필터 지우기
필터 지우기

Nesting function trouble with undefined variable

조회 수: 1 (최근 30일)
aldburg
aldburg 2017년 11월 19일
편집: Stephen23 2017년 11월 19일
Trying to code a simple nesting function and I can't understand why I get an undefined function or variable warning for 'a'
function [Y] = nesty(d,e)
Y(d,e)=2*a;
nestmini
function [a] = nestmini(d,e)
a=d+e;
end
end

채택된 답변

Walter Roberson
Walter Roberson 2017년 11월 19일
function [Y] = nesty(d,e)
a = nestmini;
Y(d,e)=2*a;
function [a] = nestmini(d,e)
a=d+e;
end
end
Remember, the variable named as output in a function is a dummy variable that is not assigned outside the function
  댓글 수: 5
Stephen23
Stephen23 2017년 11월 19일
편집: Stephen23 2017년 11월 19일
@aldburg:
  • Y=... defines a totally new variable with the name Y. It has the size of whatever the RHS has.
  • Y(d,e)=... uses indexing to allocate values into the selected elements of Y. If Y does not exist before that indexing then MATLAB creates Y and fills the unindexed elements with zero.
The introductory tutorials teach these kind of basic MATLAB concepts, such as defining variables and using indexing, and are highly recommended for all beginners:
aldburg
aldburg 2017년 11월 19일
Thanks for explaining that. I will start that once I finish my courses for the quarter. I am learning Matlab to help with my composite mechanics homework.

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

추가 답변 (1개)

KL
KL 2017년 11월 19일
You're passing d,|e| to nesty function but you're using a on the right hand side of the equation. Do not expect matlab to call the nestmini function for you.
If you want to use the function return directly, try something like,
Y(d,e) = 2*nestmini(d,e);

카테고리

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