Can I put words in branching statements?

2 ビュー (過去 30 日間)
shreekanteshwara M S
shreekanteshwara M S 2023 年 4 月 29 日
コメント済み: Walter Roberson 2023 年 4 月 29 日
I have a formula which says that F= 1/2*A*Cd*(V+/- Vair)^2
If the air is headwind, The formula is (V+Vair)^2
If the air is tailwind, The formula is (V-Vair)^2
If wind i s not there then the value of Vair is 0.
Can I code this? And also in function?

回答 (1 件)

VBBV
VBBV 2023 年 4 月 29 日
編集済み: VBBV 2023 年 4 月 29 日
Yes, you can use conditional if-else statements like this preferably inside a function
function V = myFunction(V,V_air,air)
if strcmp(air,"headwind")
V = (V+V_air).^2;
elseif strcmp(air,"tailwind")
V = (V-V_air).^2;
else
V_air = 0;
end
end
  1 件のコメント
Walter Roberson
Walter Roberson 2023 年 4 月 29 日
See also switch / case

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCell Arrays についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by