how to see t in ode function
1 view (last 30 days)
Show older comments
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
0 Comments
Answers (1)
Walter Roberson
on 1 Jan 2018
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 Comments
Walter Roberson
on 1 Jan 2018
We need to see your zigzag_simulation code, especially the ode45 call.
See Also
Categories
Find more on Ordinary Differential Equations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!