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

9 Ansichten (letzte 30 Tage)
Ismail Qeshta
Ismail Qeshta am 14 Feb. 2018
Kommentiert: Birdman am 14 Feb. 2018
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

Akzeptierte Antwort

Birdman
Birdman am 14 Feb. 2018
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 Kommentare
Ismail Qeshta
Ismail Qeshta am 14 Feb. 2018
Yes. I was thinking about that. Thank you very much again Birdman. I really appreciate your time and effort.
Birdman
Birdman am 14 Feb. 2018
You are welcome.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by