Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
unexpected parenthesis. please i need urgent solution to this
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
>> 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 Kommentare
Alexandra Harkai
am 31 Okt. 2016
Bearbeitet: Alexandra Harkai
am 31 Okt. 2016
Thanks! :) It happened so fast I had no chance to see the duplicate one. :)
Antworten (1)
Alexandra Harkai
am 31 Okt. 2016
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 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!