필터 지우기
필터 지우기

Error by having similar names for a variable and a MATLAB function

조회 수: 5 (최근 30일)
Kamia Kavi
Kamia Kavi 2022년 12월 22일
답변: Sarthak 2023년 2월 9일
When the name of the output variable (max) is similar to the name of function (max), I get the error of "Unrecognized function or variable 'max'. Why does it happen?
function max = find_value
max = max([10 100]);
end
  댓글 수: 3
Mathieu NOE
Mathieu NOE 2022년 12월 22일
never use matlab function names as variables
you code should be
function max_value = find_value
max_value = max([10 100]);
end

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

답변 (1개)

Sarthak
Sarthak 2023년 2월 9일
Hi,
In MATLAB, when you have a variable with the same name as a built-in function, MATLAB will use the variable instead of the function. To resolve this conflict, you can simply change the name of the output variable to something else. Please refer the following code for reference:
function max_value = find_value
max_value = max([10 100]);
end

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by