Bhumi Desai
Followers: 0 Following: 0
Feeds
提问
Having trouble in running this code. What should I do next?
% Assuming 'saveToFile' is already defined parts = 500; % Read data from the CSV file data = dlmread('2-2.csv', '\t', 1, ...
10 months 前 | 1 个回答 | 0
1
个回答已回答
Solution of nonlinear ordinary differential equation of second order
A = 1; % Assumed syms y(x) Dy = diff(y); ode = diff(y,x, 2) == A*(x^4); cond1 = y(0) == 1; cond2 = y(1) == 1; conds = [con...
Solution of nonlinear ordinary differential equation of second order
A = 1; % Assumed syms y(x) Dy = diff(y); ode = diff(y,x, 2) == A*(x^4); cond1 = y(0) == 1; cond2 = y(1) == 1; conds = [con...
1 year 前 | 0