Feeds
回答済み
How to create Runge-Kutta 4th order routine to solve first-order ODE's
clear all close all clc h = ___; % set the step size x = ________; % set the interval of x y = zeros(1,length(x)); y(...
How to create Runge-Kutta 4th order routine to solve first-order ODE's
clear all close all clc h = ___; % set the step size x = ________; % set the interval of x y = zeros(1,length(x)); y(...
約7年 前 | 1
| 採用済み
質問
How to create Runge-Kutta 4th order routine to solve first-order ODE's
1. Write your own 4th order Runge-Kutta integration routine based on the general equations. Do not use Matlab functions, element...
約7年 前 | 2 件の回答 | 0
2
回答回答済み
How to create a trapezoidal rule routine to evaluate the following Bessel integral without Matlab functions. ME 1101
clear all close all clc % Integrates & plots Bessel functions of the first kind a = 0; % x intial b = 20; % x final c =...
How to create a trapezoidal rule routine to evaluate the following Bessel integral without Matlab functions. ME 1101
clear all close all clc % Integrates & plots Bessel functions of the first kind a = 0; % x intial b = 20; % x final c =...
約7年 前 | 0
| 採用済み