MATLAB throwing Parse error when I attempt to display matrices?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
This problem has occurred several times, and I am yet to find a fix. When i create a matrix, then attempt to display it, the central value runs a red line under it and is described as a parse error. ex:
a = 2:3:8
disp(a)
2 5 8
In this example, the 5 displays with a red line under it, and is described as a Parse error. Any solutions to this?
Note: I am a complete novice at MATLAB, and coding in general.
0 Commenti
Risposte (1)
KSSV
il 14 Set 2018
where you tried to use disp ? This should not throw any error..unless you copy 2 5 8 into your m file. If you want to copy it in m file use:
a = [2 5 8] ;
0 Commenti
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!