Umesh Prajapati
Indian Institute of Technology, Delhi
Followers: 0 Following: 0
Statistiques
RANG
261 384
of 295 569
RÉPUTATION
0
CONTRIBUTIONS
4 Questions
1 Réponse
ACCEPTATION DE VOS RÉPONSES
25.0%
VOTES REÇUS
0
RANG
4 040 of 20 247
RÉPUTATION
354
CLASSEMENT MOYEN
5.00
CONTRIBUTIONS
3 Fichiers
TÉLÉCHARGEMENTS
21
ALL TIME TÉLÉCHARGEMENTS
3195
RANG
of 154 105
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
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...
plus de 6 ans il y a | 0
A soumis
Poisson equation
How to solve a Poisson equation using MATLAB?
plus de 8 ans il y a | 2 téléchargements |
A soumis
The Rossler Attractor, Chaotic simulation.
These codes generate Rossler attractor, bifurcation diagram and poincare map.
plus de 8 ans il y a | 18 téléchargements |
A soumis
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.
plus de 8 ans il y a | 1 téléchargement |
Question
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)
plus de 8 ans il y a | 1 réponse | 0
0
réponseQuestion
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...
plus de 8 ans il y a | 1 réponse | 0
1
réponseQuestion
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...
plus de 8 ans il y a | 1 réponse | 0
0
réponseQuestion
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...
presque 9 ans il y a | 1 réponse | 0