How to make variable matrix?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
WonJong We
am 14 Apr. 2021
Kommentiert: WonJong We
am 14 Apr. 2021
how to make this matrix?
B=(T(0):T(n))
A=B(:)
its error
0 Kommentare
Akzeptierte Antwort
Chad Greene
am 14 Apr. 2021
In Matlab, the first index of any variable is 1, so T(0) will produce an error. Try T(1) to T(n+1).
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB 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!