
Avinash Gupta
Statistics
4 Questions
0 Answers
RANK
77,421
of 275,761
REPUTATION
0
CONTRIBUTIONS
4 Questions
0 Answers
ANSWER ACCEPTANCE
75.0%
VOTES RECEIVED
0
RANK
of 18,573
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 125,563
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Content Feed
Question
What is the need for a nested function?
Hello. This is a code for solving van der Pol equation using ode45. Its available on 12000.org. I hope posting it here is not vi...
4 months ago | 1 answer | 0
1
answerQuestion
Facing an error while using "cameraCalibrator" app
I get the following while performing calibration using the Camera Calibrator app: Warning: Error occurred while executing the l...
10 months ago | 0 answers | 0
0
answersQuestion
How to convert the for loop to a while loop?
A = [7 3 2 1; 2 9 4 5; 1 3 13 4; 4 5 8 14 ]; % A is diagonally dominant b = [1;2;3;4]; x = zeros(4,1); x_new = zeros(4...
2 years ago | 1 answer | 0
1
answerQuestion
How can I prevent update of x(i) at each step of the loop? Essentially, this is a code for Gauss Seidel. How do I modify it to make it Jacobi iterative method?
A = [7 3 2 1; 2 9 4 5; 1 3 13 4; 4 5 8 14 ]; % A is diagonally dominant b = [1;2;3;4]; x = zeros(4,1); %% Method I ...
2 years ago | 1 answer | 0