error-Unbalanced or unexpected parenthesis or bracket.
이전 댓글 표시
I have extracted shape feature using canny process http://www.mathworks.in/matlabcentral/answers/23169-slope-magnitude-technique-with-sobel-operator
i have 100 imaged in a folder and have processes,but wen i try to write those image into a folder i get error as
Unbalanced or unexpected parenthesis or bracket.
please help
strtemp=strcat('D:\shape\',int2str(m),'.',pickind);
imwrite((gsq, []),strtemp))
where shape is the folder i want to store ,please help
댓글 수: 1
Jan
2011년 12월 9일
The error message "Unbalanced or unexpected parenthesis or bracket" is very clear, isn't it?
답변 (1개)
Daniel Shub
2011년 12월 9일
The command
imwrite((gsq, []),strtemp))
has 2 opening and 3 closing parenthesis. The MATLAB editor picks up on these things pretty well.
댓글 수: 4
Pat
2011년 12월 9일
Daniel Shub
2011년 12월 9일
Of course you are. It has 2 opening parentheses and 3 closing ones. You need to add another opening parentheses (or remove a closing one. The DWIM toolbox will be able to handle this for you, but Walter is taking an end-of-year break. This means you will need to figure out for yourself where to add or delete a parenthesis. I would guess you mean:
imwrite((gsq, []),strtemp)
Note the equal number of opening and closing parentheses.
Pat
2011년 12월 10일
Jan
2011년 12월 10일
Under which circumstances are you getting the same error?
Please look at the error message carefully. It explains exactly in which line the problem occurs. Then count all opening and closing round, square brakets and curly braces. They do not match.
카테고리
도움말 센터 및 File Exchange에서 Image Arithmetic에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!