3 matrix in a loop
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
sohaib atif
am 21 Okt. 2013
Kommentiert: sohaib atif
am 21 Okt. 2013
hi any body help me if any body know i am new user of matlab. i have 3 matrix of 2*2. And i want to use the matrix one by one in a funtion one at a time just like loop. what i do i dnt know please help
1 Kommentar
Akzeptierte Antwort
Pourya Alinezhad
am 21 Okt. 2013
a=[1 2;4 6]
b=[5 6;8 7]
c=[5 8;8 5]
d={a b c};
for i=1:3
x=sin(cell2mat(d(i)))
end
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices 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!