Global Index (short | long) | Local contents | Local Index (short | long)
y = sigifun(x, b, c, tau);
This function is used in solving for sigma_i in the Delayed oscillator equation. It should be used in conjunction with fsolve.m
This function is called by | |
---|---|
function y = sigifun(x, b, c, tau); %b = 3.9; %c = 2.2; %tau = 0.5; y = c - x./(tan(x*tau)) - (1/tau)*log(b*sin(x.*tau)./x);