Matlab - uso de bucle for

 
Vista:

uso de bucle for

Publicado por Gabriel (1 intervención) el 19/11/2015 21:30:12
como hacer un bucle for anidado X Y Z para hacer un análisis de señal funcional en una serie de 180

1
2
3
4
5
6
7
8
9
10
11
12
[XX,YY,ZZ,t]= size(func1);
func1_loop=func1;
 
for X=1:XX;
    for Y=1:YY;
        for Z= 1:ZZ;
 
        end
    end
end
 
clc
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder