photo

Alper Sahin


Last seen: 3 years 前 自 2021 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

4 个提问
0 个回答

排名
158,989
of 297,457

声誉
0

贡献数
4 个提问
0 个回答

回答接受率
50.0%

收到投票数
0

排名
 of 20,438

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 158,938

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
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...

3 years 前 | 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 ...

3 years 前 | 1 个回答 | 0

1

个回答

提问


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

3 years 前 | 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...

3 years 前 | 1 个回答 | 0

1

个回答