How to I resolve "the operation or expression '(' has no effect" when plotting?
显示 更早的评论
I am trying to plot two vectors, where QTH is a row vector of length 5. This is the command as it appears in my code:

You can see the first bracket is highlighted and underlined with the red squiggly error mark. When I hover over the error with my cursor I get the message:
the operation or expression '(' has no effect.
Does anyone have any idea why I would get this error for a simple plot?
回答(1 个)
Sandeep Math
2014-3-24
Try:
figure
plot([1:5], QTL)
2 个评论
Jayne
2014-3-24
Walter Roberson
2014-3-24
The [] around the 1:5 is not needed.
Using a variable named plot() will usually cause problems.
Also watch out for spaces after names: it can lead to the parser thinking that you are using the "command" form instead of the "function" form.
类别
在 帮助中心 和 File Exchange 中查找有关 Graphics Performance 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!