photo

Erik Ramirez


Last seen: 6 years ago Active since 2019

Followers: 0   Following: 0

Statistics

MATLAB Answers

6 Questions
0 Answers

RANK
153,702
of 301,234

REPUTATION
0

CONTRIBUTIONS
6 Questions
0 Answers

ANSWER ACCEPTANCE
33.33%

VOTES RECEIVED
0

RANK
 of 21,204

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 173,580

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


Shooting method problem the error is : "Dot indexing is not supported for variables of this type."
My shooting method code works when i plug this in into the ode solver and gives me a solution : ODE1 = diff(x) == x + l; ODE2...

6 years ago | 0 answers | 0

0

answers

Question


Why isn't my shooting method running?
Ive attached the functions that my shooting method m file is using. Im trying to use ode solver to solve the two point boundary ...

6 years ago | 0 answers | 0

0

answers

Question


How to label answers from a function you called in a script?
When i call the ODESystemSolver i get two answers back. But how can i label them in the code. Basically need those t...

6 years ago | 1 answer | 0

1

answer

Question


Why is my newton method giving me a huge answer? What am i doing wrong?pls help
x= sym('x'); p = 0.6; F = x^5+4*x^2-1; F_prime = diff(F); N=0; q = p - subs(F,x,p)/subs(F_prime,x,p); while(N < 100 ...

6 years ago | 2 answers | 0

2

answers

Question


Bisection method not working. Is my code heading in the right direction?
x=sym('x'); endpoint_a = input('Plese input your endpoint a: '); endpoint_b = input('Plese input your endpoint b: '); tol ...

6 years ago | 1 answer | 0

1

answer

Question


why is my Fixed point iteration method only giving me first iteration. (i included info at the bottom of code and the next few iterations answers)
x= sym('x'); tol=.00001; n_0=input('Plese input your number of iterations: '); p_0=input('Plese input your initial approxi...

6 years ago | 1 answer | 0

1

answer