How to make variable matrix?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how to make this matrix?
B=(T(0):T(n))
A=B(:)
its error
0 commentaires
Réponse acceptée
Chad Greene
le 14 Avr 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).
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!