How to take a given value from a table in a function?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Emilia
le 30 Déc 2020
Réponse apportée : Walter Roberson
le 30 Déc 2020
Hello,
For example I have a table given
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/474648/image.png)
I calculate a=y/l , For example a=y/l=2 so i need to get g=0.2.
If i get a=y/l=1 (Out of the table) it should be equal g=0.2. Also in the bottom a=y/l=6 => g=0.5.
I did it in function and does not succeed.
Thanks for the helpers
function [g] = func(y, l)
a=y/l
end
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Tables dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!