Azzera filtri
Azzera filtri

Use input from an array in a function

1 visualizzazione (ultimi 30 giorni)
LR
LR il 13 Mag 2021
Commentato: Star Strider il 13 Mag 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

Risposta accettata

Star Strider
Star Strider il 13 Mag 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 Commenti
LR
LR il 13 Mag 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 il 13 Mag 2021
As always, my pleasure!

Accedi per commentare.

Più risposte (0)

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by