MATLAB throwing Parse error when I attempt to display matrices?

1 次查看(过去 30 天)
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.

回答(1 个)

KSSV
KSSV 2018-9-14
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] ;

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by