Use input from an array in a function

조회 수: 1 (최근 30일)
LR
LR 2021년 5월 13일
댓글: Star Strider 2021년 5월 13일
I have data stored in an array called 'plan' i want to use as an input in a function. I'm calling using this: Area=CalculateArea(w,l);
The function is this:
function [result] = CalculateArea( w,l )
w=plan(j,1,i);
l=plan(j,2,i);
result=(w*l);
end
Please advise why this does not work. Any help would be appreciated.
Thank you

채택된 답변

Star Strider
Star Strider 2021년 5월 13일
The ‘plan’ array is not being passed to your function, and since the function has its own workspace (that it does not share with the calling script workspace), ‘plan’ does not exist for it.
If you are passing ‘w’ and ‘l’ to your function, and not ‘plan’ either this option (that passes only the variables, not the array) —
w=plan(j,1,i);
l=plan(j,2,i);
function [result] = CalculateArea( w,l )
result=(w*l);
end
or this option (that passes the array) —
function [result] = CalculateArea( plan, i, j)
w=plan(j,1,i);
l=plan(j,2,i);
result=(w*l);
end
would likely work.
I cannot test this, so it will likely be necessary to experiment to determine the option that works best in your application.
  댓글 수: 2
LR
LR 2021년 5월 13일
Thank you, the 2nd option worked, it worked this way too:
function [result] = CalculateArea( plan, i, j)
result=plan(j,1,i)*plan(j,2,i);
end
Star Strider
Star Strider 2021년 5월 13일
As always, my pleasure!

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

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by