Community Profile

photo

Douglas Alves


Active since 2014

Statistics

  • Thankful Level 3
  • First Answer

View badges

Content Feed

View by

Question


Simple Orbit problem Sun and Jupiter
Hello, I'm trying to plot an orbit with the Sun and Jupiter only. I assumed circular orbit and all the simplicity posible s...

6 years ago | 0 answers | 0

0

answers

Question


orbit equation with ode45
Hi, I am trying to solve an equation with ode45 but it does not actually give me what it's expect to. The equation is the clas...

9 years ago | 1 answer | 0

1

answer

Question


Plotting a simple orbit
Hi, I am having a little trouble setting up a simple orbit code so I could plot the orbit. Could anyone see my code? I have al...

9 years ago | 0 answers | 0

0

answers

Question


Using try/catch to get warning message
What o I have to do in order to get rid of the message in ode45 line 309 (error tolerance message). I use try and then I put th...

9 years ago | 2 answers | 0

2

answers

Question


fminsearch. How does the first variable works?
[IC,SurfaceValues,exitFlag]=fminsearch(@integratePlanetODEs,IC,[],extPar); This is a line of a code and IC could supposedly v...

10 years ago | 0 answers | 0

0

answers

Question


Could you guys explain me how to get a value back in a case like this...?
I Have a line in a program P0=fzero(@(P0) estimateSurfacePressure(P0,false,extPar), [1 25]); and inside es...

10 years ago | 1 answer | 0

1

answer

Answered
Could anyone explain me what a line like this works?
I'm 100% sure that was my doubt. I was thinking about it. Maybe the problem was different workspaces and iquality in the variabl...

10 years ago | 0

Question


Could anyone explain me what a line like this works?
I've got 2 files the first file with a line (1) calls the file (2). (1) P0=fzero(@(P0) estimateSurfacePressure(P0,false,extP...

10 years ago | 2 answers | 0

2

answers

Question


What's the purpose of putting 'pause(0)' when you have a large code?
I've seen some codes which is actually sometimes called by other codes and then I see some 'pause(0)'. pause makes the code to s...

10 years ago | 1 answer | 0

1

answer

Question


Argument 'range' for ode45
I have just found out that ode45(@fun,tspin,x) can have instead of tspin = [value1 value2]. tspin could be a linspace(a,b,c) whe...

10 years ago | 1 answer | 0

1

answer

Question


Doubt regarding the fzero command.
Hi guys, What does it mean when we write in a code P0 = fzero (@somefunction, [1, 25]). Does it mean search for an answer in ...

10 years ago | 1 answer | 0

1

answer

Question


"@" inside fzero command. I get an erro why?
I've got 2 .m files. The line which calls the second file is [f1 q] = fzero(@avaliator,const.guessf1,const) it'll ...

10 years ago | 1 answer | 0

1

answer

Question


How does MATLAB work when I have a structure and 'options' being set from inside and odesolver?
Suppose I have a structure k with these elements range, init and options. I noticed that since I put k inside ode45 I have an er...

10 years ago | 0 answers | 0

0

answers

Question


How do I delete an element from a structure?
I have this k.range = [-pi/4 pi/2] ; k.init = sqrt(2)/2 ; k.options = odeset('Events',@mystopper); suppose I ...

10 years ago | 1 answer | 0

1

answer

Question


command path and pathdef
I'm trying to understand a code and there's the first line of it. Could anyone explain me what exactly this works ? The code is ...

10 years ago | 2 answers | 0

2

answers

Question


Problem with function @(t) [ (1/2)*a*t.^2]
function eulers_for_mv a = .5 ; t = linspace(0,2) ; dt = t(2) - t(1) ; x = zeros(1,length(t)); v = zeros(1,l...

10 years ago | 1 answer | 0

1

answer

Question


Why summing a matrix in 2 different ways can give not the same numbers ??? Does anyone know?
I had a big problem with a code because of this mistake which looks silly but maybe it's not.. suppose f1 = .4 ; f2 =.51...

10 years ago | 1 answer | 0

1

answer

Answered
Removing values from a variable.
A{1}=[1 2 2; 2 2 2; 3 1 2; 4 5 6; 5 5 6; 7 1 2] ; A{1}(4:5,:) = [] ; it means access the first element of cell 1 (which ...

10 years ago | 0

Question


Solving odes with ode45 by using actual values for physical constants....
Whenever I try to use actual values for constants in a physical problem I get stuck in a 'busy' message from MATLAB. What do I h...

10 years ago | 0 answers | 0

0

answers

Question


Comparing an analytic solution to a numerical solution (it does not work!)
There`s an equation called filament solution by Ostriker. I need to compare his solution to the solution which comes from a sy...

10 years ago | 0 answers | 0

0

answers

Question


ODE45 how do I interpret this code...
if true % code end function elements tspan = [0 1]; inits = [0 1]; [t,y] = ode45(@Y,tspan,inits); plot(t,y) fun...

10 years ago | 1 answer | 0

1

answer

Question


What does '...' mean in MATLAB?
I came across this script and I've seen h = ... what does it mean? axis(1.2*[-1 1 -1 1]) axis square box on hold o...

10 years ago | 2 answers | 0

2

answers

Question


How do I read this code?
Suppose I run this code by typing in the command line [t p] = ode45(@spring,[0 4], [0 0]); I don't understand first of all how M...

10 years ago | 1 answer | 0

1

answer

Question


(Biginner) Code does not work! Please. I need a hand.
I learned some things about this. One, even defining rho and G outside the functions "dp" and " deriv_M" it seems that when MAT...

10 years ago | 1 answer | 0

1

answer

Question


What kind of structure is that in MATLAB I've never seen it before... (Differential equations)
f = @(t,x) [-x(1)+3*x(3);-x(2)+2*x(3);x(1)^2-2*x(3)]; what does "@(t,x)" represent and there's some room between the expre...

10 years ago | 1 answer | 0

1

answer

Question


May you guys help me I got stuck in developing a simple code... (solving diferential equations by using ode45)
If I consider the function react2 and write the function react in the prompt command it will work!! But I want to use only the s...

10 years ago | 2 answers | 0

2

answers

Question


plotting matrix with the command plot and meshgrid. Please clarify that to me.
Suppose I create a simple matrix y = [ 2 4; 6 1] and then when I plot it using plot like, plot(y,'*') I tried to understand how...

10 years ago | 1 answer | 0

1

answer

Question


Beginner... why a matrix with numbers and strings doesn't give me the numbers? ( I know I have to transform the numbers into strings)
I just would like to know how it works. e.g t = 71 ; c = (t-32)/1.8 ; hey = ['The temperature is , c , 'C'] #...

10 years ago | 1 answer | 0

1

answer