How to select columns from data matrix using "for" loop?

조회 수: 15 (최근 30일)
Ismail Qeshta
Ismail Qeshta 2018년 2월 14일
댓글: Birdman 2018년 2월 14일
Hi,
I would like to select columns from a data matrix and use them to interpolate data from another file. For example, first column is selected and interpolated from another file, and printed, then the second column, and so on. I know the interpolation code, but I need the selection of column and printing the interpolated data codes.
I would be grateful if someone can help me in this.
Thank you. Regards, Ismail

채택된 답변

Birdman
Birdman 2018년 2월 14일
One approach:
for i=1:size(A,2)%number of columns
b=A(:,i);%ith column is assigned to b variable at every step
interp(b,..);%you can use it in your function
end
  댓글 수: 42
Ismail Qeshta
Ismail Qeshta 2018년 2월 14일
Yes. I was thinking about that. Thank you very much again Birdman. I really appreciate your time and effort.
Birdman
Birdman 2018년 2월 14일
You are welcome.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by