フィルターのクリア

Using a for loop to vary the angle (θ = 10 deg – 90deg )

4 ビュー (過去 30 日間)
Daniel
Daniel 2022 年 10 月 27 日
コメント済み: Daniel 2022 年 10 月 27 日
How do I make a for loop in Matlab for a range of theta for my velocity term of 10m/s?

採用された回答

Image Analyst
Image Analyst 2022 年 10 月 27 日
Try this
numAngles = 100; % However many angles you want
theta = linspace(0, 90, numAngles);
or
theta = 10 : 5 : 90; % Adjust middle number to adjust the step size.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by