For example, I want to calculate if 0<d<2, F=2*d if 2<d<3, F=5*d
I tried to figure it out but It is beyond my ability. Please help me

 Réponse acceptée

Fangjun Jiang
Fangjun Jiang le 8 Mai 2020
Modifié(e) : Fangjun Jiang le 8 Mai 2020

0 votes

d=1;
if and(d>0, d<2)
F=2*d;
elseif and(d>2, d<3)
F=5*d;
end
You can also use "if d>0 && d<2" instead. Type "help relop" to learn about relational operators.

1 commentaire

Sanggi Park
Sanggi Park le 8 Mai 2020
Thanks for answer! And could you help me that If i scale d as 0:0.5:4 and want to know all the F value, what command should I input?

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur File Operations dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by