fminsearch vector of results

조회 수: 1 (최근 30일)
MARCO FORTI
MARCO FORTI 2021년 4월 7일
댓글: MARCO FORTI 2021년 4월 8일
Here's my model:
Given the model, my intention is to estimate γ having the values of C, and .
I tryed with the following code, but the program returns me only one value for γ while I need the vector containing every value produced in the loop.
How can I fix the code to get it?
j=1; %increment level. The loop will work for j>1 as well.
for i=1:j:steps;
fnc = @(gamma,C,Sum_I) C(i)./(1+gamma) - (gamma./(1+gamma)).*Sum_I(i); % Model function
rn = @(gamma) norm(I - fnc(gamma,C,Sum_I)); % Residual norm
gamma0 = [15]; % Inizializzazione
[gamma, ResNorm] = fminsearch(rn, gamma0);
end

채택된 답변

Walter Roberson
Walter Roberson 2021년 4월 7일
steps = 5;
C = @cos;
Sum_I = @atan;
I = 42;
j=1; %increment level. The loop will work for j>1 as well.
for i=1:j:steps;
fnc = @(gamma,C,Sum_I) C(i)./(1+gamma) - (gamma./(1+gamma)).*Sum_I(i); % Model function
rn = @(gamma) norm(I - fnc(gamma,C,Sum_I)); % Residual norm
gamma0 = [15]; % Inizializzazione
[gamma(i), ResNorm(i)] = fminsearch(rn, gamma0);
end
gamma
gamma = 1×5
-0.9690 -0.9840 -0.9940 -0.9845 -0.9618

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Gamma Functions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by