Info

この質問は閉じられています。 編集または回答するには再度開いてください。

unexpected parenthesis. please i need urgent solution to this

1 回表示 (過去 30 日間)
JOHN ADETIBA
JOHN ADETIBA 2016 年 10 月 31 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
>> plot(plist,ref(fcount,'x--':),plist,ref(fcount+1,'o:':)) ??? plot(plist,ref(fcount,'x--':),plist,ref(fcount+1,'o:':)) | Error: Unbalanced or unexpected parenthesis or bracket.
>>
  3 件のコメント
Alexandra Harkai
Alexandra Harkai 2016 年 10 月 31 日
編集済み: Alexandra Harkai 2016 年 10 月 31 日
Thanks! :) It happened so fast I had no chance to see the duplicate one. :)

回答 (1 件)

Alexandra Harkai
Alexandra Harkai 2016 年 10 月 31 日
Are you trying to plot plist against ref(count) and ref(count+1)? If that is the case, this would do that:
plot(plist,ref(fcount),'x--'),plist,ref(fcount+1),'o:'))
No idea what you tried to achieve with this, it may help if you explained what you are trying to do:
ref(fcount,'x--':)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by