diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /70/CH6/EX6.2.2/6_1_2.sci | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '70/CH6/EX6.2.2/6_1_2.sci')
-rwxr-xr-x | 70/CH6/EX6.2.2/6_1_2.sci | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/70/CH6/EX6.2.2/6_1_2.sci b/70/CH6/EX6.2.2/6_1_2.sci new file mode 100755 index 000000000..1ed56b13d --- /dev/null +++ b/70/CH6/EX6.2.2/6_1_2.sci @@ -0,0 +1,11 @@ +//313 +clear; +close; +clc; +disp('f(x,y)=x^2+4*x*y+y^2'); +a=1; +c=1; +deff('[f]=f(x,y)','f=x^2+4*x*y+y^2'); +disp(f(0,0),'f(0,0)=') +disp('Here 2b=4 it still does not ensure a minimum ,the sign of b is of no importance.Neither F nor f has a minimum at(0,0) because f(1,-1)=-1.') +//end
\ No newline at end of file |