what is meaning of this matlab
2 views (last 30 days)
Show older comments
N=xlsread('prova1');
t=N(:,3:39);
0 Comments
Accepted Answer
DGM
on 13 Jun 2022
Edited: DGM
on 13 Jun 2022
How about this
% read a spreadsheet with the incomplete filename "prova1"
% it is unknown whether the file actually has no extension
% or whether this is another artifact of MSWindows default behavior
% misleading users into believing that extensions don't exist
N=xlsread('prova1');
% extract the third through 39th column and store in the variable "t"
t=N(:,3:39);
2 Comments
DGM
on 13 Jun 2022
% extract the third through 39th column of array N
% and store in the array t
t = N(:,3:39);
More Answers (0)
See Also
Categories
Find more on Shifting and Sorting Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!