how to use two for loop in one matlab program

4 visualizaciones (últimos 30 días)
ASHA RANI
ASHA RANI el 30 de En. de 2019
Editada: madhan ravi el 30 de En. de 2019
for z=1:3
v(z) = zeros(1,length(x));
for ii = 1:numel(x)
V = roots([S0(ii),-S1(ii),S2(ii),-S3(ii)]);
v(z)(ii) = sqrt((V(z,1))./p);
end
end

Respuestas (1)

M
M el 30 de En. de 2019
You should read this:
You cannot write v(z)(ii) but you should consider 2 dimensional data and acces it using v(z,ii).

Categorías

Más información sobre Polynomials en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by