Converting flowchart to matlab code

10 ビュー (過去 30 日間)
menaka malu
menaka malu 2020 年 2 月 18 日
回答済み: Vishal Sharma 2022 年 5 月 14 日
I have one flow chart with me regarding my work. Iam trying to convert the flowchart to matlab code. But iam facing some difficulties in loops. one loop is there for time increment. Time is starting from 0. And incrementing 0.0025s in each iteration. But end value of time is infinity. The end time is deciding by condition. Is x<y means iteration has to stop. how i will put the loop with while condition?

採用された回答

KSSV
KSSV 2020 年 2 月 18 日
x = 0 ; % your initial x value
y = 100 ; % your fixed y value
t0 = 0 ; % initial time
dt = 0.00025 ; % time step
t = zeros([],1) ; % initilaize the time array
count = 0 ;
while x < y
count = count+1;
t(count) = t0+(count-1)*dt ;
% calculate x
x = rand*100+rand ; % this is for demo
end
  1 件のコメント
menaka malu
menaka malu 2020 年 2 月 22 日
Thankyou for trying this. I will try this way

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

その他の回答 (1 件)

Vishal Sharma
Vishal Sharma 2022 年 5 月 14 日
Can anyone please provide the MATLAB code for the given flowchart

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by