Borrar filtros
Borrar filtros

arrays in functions

1 visualización (últimos 30 días)
Alex
Alex el 20 de Jul. de 2011
I am sending a function a vector something like [1.2 1.4 1.6 1.8 2] into vector Actual_output
function sse=myfit(params,Input,Actual_Output)
global c
a=params(1);
b=params(2);
% c = params(3);
c = -1/atanh((exp(a*2*pi)-cosh(a*b*Actual_Output))/sinh(a*b*Actual_Output));
it appears in c.
How do I do the current value - the value before i.e Actual_Output(2)-Actual_Output(1)

Respuestas (1)

Oleg Komarov
Oleg Komarov el 20 de Jul. de 2011
c = -1/atanh((exp(a*2*pi)-cosh(a*b*Actual_Output))./sinh(a*b*Actual_Output));
Actual_Output(2:end)-Actual_Output(1:end-1)

Categorías

Más información sobre MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by