MATLAB throwing Parse error when I attempt to display matrices?

1 vue (au cours des 30 derniers jours)
Owen Zupan
Owen Zupan le 14 Sep 2018
Réponse apportée : KSSV le 14 Sep 2018
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.

Réponses (1)

KSSV
KSSV le 14 Sep 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] ;

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by