photo

Baris Unsal


Last seen: más de 2 años hace Con actividad desde 2022

Followers: 0   Following: 0

Estadística

Feeds

Ver por

Pregunta


What is the main error in this code and how can it be solved?
Here is the code: a=0; b=1; c=1; d=L; %initialization % report pair a,b % report pair c,d while ~((c==1)&(d==1)) % test...

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

1

respuesta

Pregunta


Hi, i want to get a gaussian curve fitting plot, function is y = A*exp-((x-mu)^2/2*sig^2). y axis must be between -0.2 and 1 with counting by 0.2 per each step, any tips?
f = @(x,A,mu,sig) A*exp(-(x-mu).^2)/(2*sig^2); A = 1; mu = 7; sig = 1.5; x = 0:2:10; y = -0.2:0.2:; y = f(x,a,b,c); plot(x,...

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

2

respuestas