how to see t in ode function

1 回表示 (過去 30 日間)
tomer polsky
tomer polsky 2018 年 1 月 1 日
コメント済み: Walter Roberson 2018 年 1 月 1 日
hello i am using ode command but I cant see the output t , for exmaple i want to see how variable t is displaying in the command window
function [ zigzag_simulation] = find_zigzag( t,x)
global R R1 C C1 L1 L2 U Duty_cycle alpha R_C R2 R_C1 V_diode R_diode
global A_T B_T C_T D_T V_desire f tspan
global A_a A_b B_a B_b
zigzag_simulation=disp(t)
end

回答 (1 件)

Walter Roberson
Walter Roberson 2018 年 1 月 1 日
function [ zigzag_simulation] = find_zigzag( t,x)
global R R1 C C1 L1 L2 U Duty_cycle alpha R_C R2 R_C1 V_diode R_diode
global A_T B_T C_T D_T V_desire f tspan
global A_a A_b B_a B_b
disp(t)
zigzag_simulation = rem(t, 1/f);
end
  2 件のコメント
tomer polsky
tomer polsky 2018 年 1 月 1 日
thank you for your help but i tried this allready and i get this eror :
>> zigzag_simulation Not enough input arguments.
Error in zigzag_simulation (line 25)
disp(t)
Walter Roberson
Walter Roberson 2018 年 1 月 1 日
We need to see your zigzag_simulation code, especially the ode45 call.

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

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by