필터 지우기
필터 지우기

Assigning excel data to an array via a counter

조회 수: 1 (최근 30일)
bugatti79
bugatti79 2014년 7월 22일
편집: Azzi Abdelmalek 2014년 7월 22일
Folks,
Here is the code i use to assign data from the 2nd and 6th column in a spreadsheet to an array
for i=1:1:2
t(i)= data(:,5*(i-1)+1); %Time
end
However, i get the following
??? In an assignment A(I) = B, the number of elements in B and I must be the same.
I want to have an array of 2 columns to do further calcs
Thanks
What is wrong? Thanks

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 7월 22일
편집: Azzi Abdelmalek 2014년 7월 22일
t=zeros(size(data,1),2)
for i=1:1:2
t(:,i)= data(:,5*(i-1)+1); %Time
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by