diff options
Diffstat (limited to 'Working_Examples/215/CH7/EX7.1/ex7_1.sce')
-rwxr-xr-x | Working_Examples/215/CH7/EX7.1/ex7_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Working_Examples/215/CH7/EX7.1/ex7_1.sce b/Working_Examples/215/CH7/EX7.1/ex7_1.sce new file mode 100755 index 0000000..97c904a --- /dev/null +++ b/Working_Examples/215/CH7/EX7.1/ex7_1.sce @@ -0,0 +1,10 @@ +clc
+syms s t
+//part(a)
+i=diff(5*s^0,s)
+disp(i,'i=')
+//prt(b)
+i1=diff(4*sin(3*t),t)
+t=-2:.1:5
+ plot (t,12*cos(3*t))
+xtitle('i vs t','t(s)','i(A)')
\ No newline at end of file |