photo

Alper Sahin


Last seen: 2年以上 前 2021 年からアクティブ

Followers: 0   Following: 0

統計

  • Thankful Level 2
  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


second order of accuracy approximation formula
Assuming y (x) is a smooth function defined on the interval [0; 1] ; obtain a second order of accuracy approximation formula for...

2年以上 前 | 0 件の回答 | 0

0

回答

質問


Write a MATLAB implementation that applies the classical fourth order RK method
clc clear B=4; f1=@(t,u,v)v; f2=@(t,u,v)5*exp(-2*t)+2*exp(-(B+2)*t)+exp(-(B*t))+t-v*exp(-B*t)-u; a=0; % intial point of t ...

2年以上 前 | 1 件の回答 | 0

1

回答

質問


find positive and nonzero roots of function matlab
sin(x)-0.1*x=0 find positive and nonzero roots . thank you

2年以上 前 | 1 件の回答 | 0

1

回答

質問


Quadratic Approximation Method to find the maximum of f(x). got into an infinite loop
clear all; clc; syms x; fprintf('QUADRATIC APPROXIMATION METHOD\n\n'); f=log(x)*sin(x^2); x0=1; x1=1.8; x2=2; err=10...

2年以上 前 | 1 件の回答 | 0

1

回答