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

1 visualización (últimos 30 días)
sowmya
sowmya el 10 de Mzo. de 2019
Respondida: darova el 10 de Mzo. de 2019
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?

Respuestas (1)

darova
darova el 10 de Mzo. de 2019
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

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by