what is meaning of this matlab

1 次查看(过去 30 天)
N=xlsread('prova1');
t=N(:,3:39);

采纳的回答

DGM
DGM 2022-6-13
编辑:DGM 2022-6-13
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 个评论
Muhammad Waheed AZAM
t=(:,3:39); I just want to know above code. What is tell us above code
DGM
DGM 2022-6-13
% extract the third through 39th column of array N
% and store in the array t
t = N(:,3:39);

请先登录,再进行评论。

更多回答(0 个)

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by