photo

Umesh Prajapati


Last seen: 8개월 전 2016년부터 활동

Followers: 0   Following: 0

메시지

통계

All
MATLAB Answers

4 질문
1 답변

File Exchange

3 파일

순위
214,275
of 301,159

평판
0

참여
4 질문
1 답변

답변 채택
25.0%

획득한 표
0

순위
4,017 of 21,182

평판
368

평균 평점
5.00

참여
3 파일

다운로드 수
8

ALL TIME 다운로드 수
3338

순위

of 173,105

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • 5-Star Galaxy Level 3
  • Personal Best Downloads Level 2
  • First Submission
  • First Answer
  • Thankful Level 1

배지 보기

Feeds

보기 기준

답변 있음
Warning: Matrix is singular, close to singular or badly scaled.
Check the second column of solution matrix. It is zero throughout. That's why you got the warning. It depends on the parameter v...

거의 8년 전 | 0

제출됨


Poisson equation
How to solve a Poisson equation using MATLAB?

거의 10년 전 | 다운로드 수: 1 |

5.0 / 5

제출됨


The Rossler Attractor, Chaotic simulation.
These codes generate Rossler attractor, bifurcation diagram and poincare map.

거의 10년 전 | 다운로드 수: 5 |

5.0 / 5

제출됨


Point of maxima minima of a function of one variable
This program will calculate the point of maxima and minima of a function of one variable.

거의 10년 전 | 다운로드 수: 2 |

0.0 / 5

질문


How to plot bifurcation diagram for any parameter in Rossler system?
The Rossler system is: x'(t) = -(y+z) y'(t) = x + a*y z'(t) = b + z*(x-c)

거의 10년 전 | 답변 수: 0 | 0

0

답변

질문


How to calculate round off error in each step of finite central difference approximation.
format long; f = @(x) exp(cos(x)); df = @(x) -exp(cos(x))*sin(x); x = 1; Truedf = df(x); h(1) = 1/2; H(1) = h; D(1) = (f(x+h...

거의 10년 전 | 답변 수: 1 | 0

1

답변

질문


Hi, my prob is find the most accurate 1st derivative of f(x)=exp(cos(x)) at x=1, with h=0.5,0.25,..,2^(-16). I calculate the 1st der. using 1st order central diff formula & trying to improve the accuracy using Richardson extrap. got incorrect result
clear; clc; format shortG f = @(x) exp(cos(x)); df = @(x) -exp(cos(x))*sin(x); x = 1; Truef1 = df(x); A = []; h = 1/2...

거의 10년 전 | 답변 수: 0 | 0

0

답변

질문


Solve a system of algebraic equations by Gauss elimination using two significant digits
Hi, I want to solve a system of algebraic equation by Gauss elimination using to significant digit. I am able to solve this, but...

대략 10년 전 | 답변 수: 1 | 0

1

답변