gpt4 book ai didi

Matlab 在更改 LineStyle 时在 -- 和 - 之间有所不同

转载 作者:太空宇宙 更新时间:2023-11-03 20:02:23 26 4
gpt4 key购买 nike

我有一个程序,我希望能够通过输入更改线型,但我在从 - 更改为 -- 以及从 -- 更改为 - 时遇到了一些问题。它给出了“选择的样式已被使用”的消息,我怎样才能让程序看到它们之间的区别而不必写 -- 像 - - 这样的间隔?

 style=input('Give new style ( :, --, -., -): ','s');
h(id) = plot_handles(id);

if get(h(id), 'LineStyle')==(style)
disp('The choosen style is already used!');
else
set(h(id), 'LineStyle', style);

end

最佳答案

当你使用==时,你会得到一个piece-for-piece的比较,如下所示:

'-' == '--'    
ans =
1 1

尝试使用 isequal 代替:

isequal('-' ,'--')
ans =
0

我认为这应该可行:

if isequal(get(h(id), 'LineStyle'), (style))
disp('The choosen style is already used!');
else
set(h(id), 'LineStyle', style);

关于Matlab 在更改 LineStyle 时在 -- 和 - 之间有所不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17012103/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com