Effacer les filtres
Effacer les filtres

Use input from an array in a function

1 vue (au cours des 30 derniers jours)
LR
LR le 13 Mai 2021
Commenté : Star Strider le 13 Mai 2021
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

Réponse acceptée

Star Strider
Star Strider le 13 Mai 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 commentaires
LR
LR le 13 Mai 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
Star Strider
Star Strider le 13 Mai 2021
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by