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 /50/CH5/EX5.10/ex_5_10.sce | |
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 '50/CH5/EX5.10/ex_5_10.sce')
-rwxr-xr-x | 50/CH5/EX5.10/ex_5_10.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/50/CH5/EX5.10/ex_5_10.sce b/50/CH5/EX5.10/ex_5_10.sce new file mode 100755 index 000000000..919949c50 --- /dev/null +++ b/50/CH5/EX5.10/ex_5_10.sce @@ -0,0 +1,15 @@ +// example 5.10;
+// find the jacobian matrix;
+
+
+// given two functions in x,y;
+// and the point at which the jacobian has to be found out;
+
+deff('[w]=f1(x,y)','w=x^2+y^2-x');
+
+deff('[q]=f2(x,y)','q=x^2-y^2-y');
+
+h=1;k=1;
+
+J= jacobianmat (f1,f2,h,k);
+disp(J);
\ No newline at end of file |