how to get element of a matrix that defined as a function?
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
reza hamzeh
am 16 Dez. 2019
Bearbeitet: Stephen23
am 16 Dez. 2019
hi. suppose this matrix function. how can i get its elements ? for example ha(1,1) dosent work.
ha=@(J) [0 J;1 J];
1 Kommentar
Akzeptierte Antwort
Stephen23
am 16 Dez. 2019
That numeric matrix is only created when the function is called, it does not exist beforehand.
So you need to call the function, assign its output to a variable, and then use indexing:
M = ha(5)
M(1,1)
0 Kommentare
Weitere Antworten (0)
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!