Community Profile

photo

john birt


Cardiff University, Wales, UK

Con actividad desde 2011

Studying for a Phd in Financial Mathematics

Golf, Surfing, Cooking Fish
Professional Interests: stochastics, probability, financial mathematics

Estadísticas

  • Thankful Level 4

Ver insignias

Content Feed

Ver por

Pregunta


multiple periodograms
I have some data in vector 'x'. I can compute a periodogram easily enough by y=x; [Pxx,w] = pwelch(y); Great, all is ...

casi 12 años hace | 1 respuesta | 0

1

respuesta

Pregunta


matrix dimensions do not agree?
how can I add more observed variables into a function 'f' x = [1.4 1.5 1.6]; z=[4.1 5.3 6.7]; y = [0.2 0.31 0.43]; c ...

casi 12 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Solving equations, Numerical Integration, MSE, best fit overall parameter 'c'
_Note: My actual functions are huge, the question uses a simple y=c*x just for illustrative purpose._ With equation y=x*c wh...

casi 12 años hace | 1 respuesta | 0

1

respuesta

Pregunta


solve nonlinear equations + numerical integration
Hi, I just have no idea how to do this.. I have code x = [1.4334 1.46 0.1; 1.435 1.46 0.1]; t = 0.1:0.1:0.6; for i=1...

casi 12 años hace | 3 respuestas | 0

3

respuestas

Pregunta


matrix form numerical integration
This code does not work clear; x = [1.0024 0.264 1.4334 1.46 0.0219 0.1; 1.0024 0.264 1.435 1.46 0.0220 0.1; ...

casi 12 años hace | 1 respuesta | 0

1

respuesta

Pregunta


numerical integration
I have code c=0.2; t = 0.00001:0.0001:20; trapz(t,normcdf(((log(q(1)/K(1))+t*c^2/2)/(c*sqrt(t))),0,1)*stblpdf(t,0.5,1,12,...

casi 12 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Matlab from Command promt
So I have a matlab function function F = myfun5(x) F = x+5; exit; and when I run this from the Windows C...

alrededor de 12 años hace | 2 respuestas | 0

2

respuestas

Pregunta


add labels to columns
I have a 'q' which is a 150 by 10 matrix (150 rows each with 10 variables). when I look at the data in variable editor, (wher...

alrededor de 12 años hace | 1 respuesta | 0

1

respuesta

Pregunta


solve non linear equation
ok so I have a non linear function that I want to solve for 'x', one equation and one unknown variable 'x'. I have a function...

alrededor de 12 años hace | 1 respuesta | 0

1

respuesta

Pregunta


calling a function n times
say I have a function called myfun which has no arguments but returns a number, and I call it and assign the value to 'y', like ...

más de 12 años hace | 2 respuestas | 0

2

respuestas

Pregunta


how to get the result as a vector
Hi, Im generating normal random numbers into a matrix and then perform a calculation on each column of the matrix. My problem is...

más de 12 años hace | 2 respuestas | 0

2

respuestas

Pregunta


periodogram example code
I am trying to get to grips with plotting a periodogram of a financial time series using Matlab. My first port of call was the p...

más de 12 años hace | 1 respuesta | 0

1

respuesta

Pregunta


surf cannot be complex
when i run this code d = 0.0002; g = 80; t = 6; k = 0.7; m = 0; i = (48*d.*t.^2*k.*(k-1).*(k-2).*g^((k-3)/k)...

casi 13 años hace | 2 respuestas | 1

2

respuestas

Pregunta


3d plot change view / reverse axis
I have a 3d plot generated by the following code d = 30:2:70; g = 30:2:70; C = 0.02; k=0.7; [D,G] = meshgrid(d,...

casi 13 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Z must be a matrix, not a scalar or vector.
really don't understand this "." syntax stuff my code d = 0:1:10; g = 0:1:10; t = 1; k=0.7; [D,G] = meshgrid...

casi 13 años hace | 1 respuesta | 0

1

respuesta

Pregunta


How do I change the marker size for a plot?
Im trying to set the marker size on a plot but having no luck, heres my code this works fine plot( x , x^2,'-k*',....

casi 13 años hace | 4 respuestas | 7

4

respuestas

Pregunta


vector not produced missing some '.' ?
something is wrong with this code t=0:0.1:1; g = (0.30/(2*(pi*t^3)^0.5))*exp((-0.30^2)/(4*t)); As the vector g ne...

casi 13 años hace | 4 respuestas | 1

4

respuestas

Pregunta


Plot setting axis properties
I just want to set the following properties axis( ylim([-0.05 0.25]), xlabel('Lag'), ylabel('ACF')) axes('FontSize',5)...

casi 13 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Trust-Region Dogleg Method - what do I do?
Im trying to solve two equations with two unknowns, however it come back saying _"No solution found, fsolve stopped because the ...

alrededor de 13 años hace | 1 respuesta | 0

1

respuesta

Pregunta


solve nonlinear equations
Im trying to solve 5 nonlinear equations with 5 unknowns, but im getting an error? x0 = [-0.0018; 2.8914; 30.6782; 35.3729;...

alrededor de 13 años hace | 1 respuesta | 0

1

respuesta

Pregunta


solve nonlinear equations
Im trying to solve 5 nonlinear equations with 5 unknowns, but im getting an error? x0 = [-0.0018; 2.8914; 30.6782; 35.3729;...

alrededor de 13 años hace | 1 respuesta | 0

1

respuesta

Pregunta


nonlinear regression
I have code c = [-0.0007, 0.1575, 11.8862, 0.2478, 18.5870]; f = @(c,x) exp(c(1)*x+c(2)*c(3)-c(2)*(c(3)^(1/c(4))+c(5)^2-...

alrededor de 13 años hace | 4 respuestas | 0

4

respuestas

Pregunta


Numerical Integration inc. a Sumation in equation
I have a sumation in the equation i need to integrate, syms k; symsum(sym('k'), k, 0, 10) works fine, as does X...

alrededor de 13 años hace | 1 respuesta | 0

1

respuesta

Pregunta


numerical integration dimension error
ok now Im getting another type of error X = 0:1:100; Y = X.^(-1/2)*exp(-0.5*(0.00009996^2/X+34.3713^2*X)); Z =trapz(X,Y) ...

alrededor de 13 años hace | 1 respuesta | 0

1

respuesta

Pregunta


numerical integration error
How come I get an error? What does this mean? X = 0:1:100; Y = X^(-1/2)*exp(-0.5*(0.00009996^2/X+34.3713^2*X)); Z = trapz(...

alrededor de 13 años hace | 1 respuesta | 0

1

respuesta

Pregunta


numerical answer required for sumation
a very basic question, say i use symsum(((-1)^(sym('k')-1))*(sin(sym('k'))), k, 0, 12) I just get sin(311/250) - sin(31...

alrededor de 13 años hace | 3 respuestas | 0

3

respuestas

Pregunta


Plot p.d.f. from m.g.f
Knowing only the Moment Generating Function (or alternatively the Characteristic function, replacing _t_ by _it_) of a distribut...

alrededor de 13 años hace | 1 respuesta | 0

1

respuesta

Pregunta


Estimate an expression for a Probability Density Function
I have a 5 parameter distribution, I have estimates of all five parameters. I also have the characteristic function, moment gene...

alrededor de 13 años hace | 1 respuesta | 0

1

respuesta

Pregunta


nlinfit Options - how to set them?
I want to change the max iterations for nlinfit, as usual the mathworks docs are totally unhelpful by saying _'[...] = nlinf...

alrededor de 13 años hace | 3 respuestas | 0

3

respuestas

Pregunta


nonlinear regression
After spending five hours reading how to use matlab for nonlinear regression I am so confused. I'm sure there must be some simpl...

alrededor de 13 años hace | 1 respuesta | 0

1

respuesta

Cargar más