Use input from an array in a function

2 views (last 30 days)
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

Accepted Answer

Star Strider
Star Strider on 13 May 2021
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 Comments
LR
LR on 13 May 2021
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

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!