String scalar or character vector must have valid interpreter syntax
18 次查看(过去 30 天)
显示 更早的评论
Rx(1)= "(cos(seta)-0.3 * sin(seta)) * Rx_" ;
Ry(1)= "(0.3*cos(seta) + sin(seta)) * Ry_";
there are my variable and
I wrote the plot title like this
title(Rx(1)+" + "+Ry(1));
but I recieve this error message,' String scalar or character vector must have valid
interpreter syntax' . How can I fix it?
0 个评论
采纳的回答
Adam Danz
2020-7-31
编辑:Adam Danz
2020-7-31
You probably want something like
title(sprintf('%.2f + %.2f', Rs(1), Ry(1)))
Update
Set interpretter to 'none',
title(Rx(1)+" + "+Ry(1),'Interpreter','none');
3 个评论
Adam Danz
2020-7-31
I didn't see that the Rx and Ry values had quotes. In the furture, it would be helpful if you format your code using the [>] button in the question/comment editor.
I've updated my answer with the solution.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Argument Definitions 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!