Info
この質問は閉じられています。 編集または回答するには再度開いてください。
unexpected parenthesis. please i need urgent solution to this
1 回表示 (過去 30 日間)
古いコメントを表示
>> 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
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
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--':)
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!