Array indices must be positive integers or logical values.
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
dylan stephens
el 26 de Feb. de 2021
Comentada: KSSV
el 26 de Feb. de 2021
function [z]=phi(x)
%Determine phi(x) using the formulas provided
%2/25/21
%AE 227
a=0.4361836;
b=0.1201676;
c=0.937298;
r=exp(-.5*(x^2))/sqrt(2*pi);
t=1/(1+(0.3326*x));
z=0.5-r(a*t-b(t^2)+c(t^3));
end
0 comentarios
Respuesta aceptada
KSSV
el 26 de Feb. de 2021
Editada: KSSV
el 26 de Feb. de 2021
function [z]=phi(x)
%Determine phi(x) using the formulas provided
%2/25/21
%AE 227
a=0.4361836;
b=0.1201676;
c=0.937298;
r=exp(-.5*(x.^2))/sqrt(2*pi);
t=1./(1+(0.3326*x));
z=0.5-r.*(a*t-b*(t.^2)+c*(t.^3)); % <--- change in this line
end
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!