Error using == Matrix dimensions must agree.

조회 수: 1 (최근 30일)
Alvaro Arenas
Alvaro Arenas 2015년 5월 30일
편집: Pronoy Das 2021년 2월 25일
Hi, I want a solution to this problem. Someone can help me?
Error in operations (line 5)
elseif c == 'multi'

채택된 답변

Star Strider
Star Strider 2015년 5월 30일
I have no idea what the matrix dimension problem is, since we have only one line of your code. However, the way to compare strings and string variables is to use the strcmp or strcmpi functions.
So the correct syntax for the line you posted would be:
elseif strcmpi(c, 'multi')
  댓글 수: 7
Star Strider
Star Strider 2018년 11월 16일
@KenoKanawa — My pleasure!
Dunzhi Chen
Dunzhi Chen 2020년 6월 25일
Thanks, this solved my problem!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Pronoy Das
Pronoy Das 2021년 2월 25일
편집: Pronoy Das 2021년 2월 25일
I came across a similar problem. Simply replace the single quotation marks with the double quotation marks, i.e. replace the line in your code with
c == "multi"

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by