Feeds
提问
How can I install Optimization toolbox?
function F =fun(x) F(1) = exp(-exp(-(x(1)+x(2)))) - x(2)*(1+x(1)^2); F(2) = x(1)*cos(x(2)) + x(2)*sin(x(1)) - 0.5; ...
5 years 前 | 3 个回答 | 0
3
个回答提问
Asking about an output
%% Differentiation of tan^{-1}x at 1 clear all; clc; f=@(x) atan(x); a=1; h=10.^[-2:-1:-4]; eVal=1/(1+a^2); %% Forward di...
5 years 前 | 1 个回答 | 0