Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

unexpected parenthesis. please i need urgent solution to this

1 vue (au cours des 30 derniers jours)
JOHN ADETIBA
JOHN ADETIBA le 31 Oct 2016
Clôturé : MATLAB Answer Bot le 20 Août 2021
>> 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 commentaires
Alexandra Harkai
Alexandra Harkai le 31 Oct 2016
Modifié(e) : Alexandra Harkai le 31 Oct 2016
Thanks! :) It happened so fast I had no chance to see the duplicate one. :)

Réponses (1)

Alexandra Harkai
Alexandra Harkai le 31 Oct 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--':)

Community Treasure Hunt

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

Start Hunting!

Translated by