Feeds
提问
Translating from python to matlab code
I want to translate this python code which solves an ODE with radau mode to matlab. I am new to matlab. There is no documentatio...
4 years 前 | 1 个回答 | 0
1
个回答提问
How do I print the solution equation from an ode solver
clc; clear all; close all tspan = [0 5]; y0 = 0; [t,y] = ode113(@(t,y) 2*t, tspan, y0); disp([t,y]); plot(t,y) How do ...
4 years 前 | 1 个回答 | 0
