Can someone help me to see where the error is please?

조회 수: 2 (최근 30일)
Hdez
Hdez 2021년 1월 14일
편집: Image Analyst 2021년 1월 14일
Error: File: AssignmentOmaira2.m Line: 17 Column: 15
Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters.
Can someone help me to identify the error, it says it is on line 17 but I can not figure it out

답변 (2개)

Cris LaPierre
Cris LaPierre 2021년 1월 14일
Your conditional statemens are using an incorrect syntax. Notice the characters that are underlined in red. It looks like you forgot to keep the function with its inputs. Are you trying to do this?
while rem(lx,h)>=0 || rem(ly,h)<=0
  댓글 수: 2
Hdez
Hdez 2021년 1월 14일
If I do that it gives me that the solution is incorrect and therefore I have to reneter a value for h
Cris LaPierre
Cris LaPierre 2021년 1월 14일
편집: Cris LaPierre 2021년 1월 14일
Well, that's better than what it was doing before. Now at least your code is running without errors.
Perhaps the error is in the logic that has been built into the code. Work through what it is you want your code to do, and then verify that what you have written is actually doing that.

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


Image Analyst
Image Analyst 2021년 1월 14일
편집: Image Analyst 2021년 1월 14일
I think you mean
while rem(lx,h) ~=0 || rem(ly,h) ~= 0
promptMessage = sprintf('Incorrect Solution.\nPlease enter a value that results in an integer value.\nDo you want to Continue processing,\nor Quit processing?');
titleBarCaption = 'Continue?';
buttonText = questdlg(promptMessage, titleBarCaption, 'Try again', 'Quit', 'Try again');
if contains(buttonText, 'Quit', 'IgnoreCase', true)
return;
end
% Try again.
h = input('Enter the desired grid spacing : ');
end

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by