フィルターのクリア

arrays in functions

1 回表示 (過去 30 日間)
Alex
Alex 2011 年 7 月 20 日
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)

回答 (1 件)

Oleg Komarov
Oleg Komarov 2011 年 7 月 20 日
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)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by