Use a column from a text file to find value of a parameter in for loop

1 次查看(过去 30 天)
I have a text file with 3 columns of numerical data. For every value of data in third column, I need to find the value of a paramete using for loop. How can i do this?

回答(1 个)

darova
darova 2019-3-10
fid = fopen('sowmya.txt');
A = fscanf(fid, '%g %g %g', [3 inf]);
fclose(fid);
A = A';
x = A(A:,3); % entire 3th column
for i = 1:lentgh(x)
x(i) = x(i) * rand;
end

类别

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