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!