photo

Bhumi Desai


Last seen: 4 months ago Active since 2023

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Question


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 ago | 1 answer | 0

1

answer

Answered
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 ago | 0