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 /149/CH4/EX4.6/ques6.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 '149/CH4/EX4.6/ques6.sce')
-rwxr-xr-x | 149/CH4/EX4.6/ques6.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/149/CH4/EX4.6/ques6.sce b/149/CH4/EX4.6/ques6.sce new file mode 100755 index 000000000..8eeda78a0 --- /dev/null +++ b/149/CH4/EX4.6/ques6.sce @@ -0,0 +1,17 @@ +//ques4.1
+//clear
+//cd SCI
+//cd ("..")
+//cd ("..")
+//exec symbolic.sce
+clc
+disp(' we have to find yn for F=cosxcos2xcos3x ');
+syms x a
+F=x/(x^2+a^2);
+n=input('Enter the order of differentiation : ");
+disp('calculating yn ');
+yn=diff(F,x,n)
+disp('the expression for yn is ');
+disp(yn);
+
+
|