diff options
Diffstat (limited to '964/CH19')
-rwxr-xr-x | 964/CH19/EX19.3/19_3.sce | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/964/CH19/EX19.3/19_3.sce b/964/CH19/EX19.3/19_3.sce index 4090562f0..7d2263526 100755 --- a/964/CH19/EX19.3/19_3.sce +++ b/964/CH19/EX19.3/19_3.sce @@ -1,8 +1,8 @@ -clc;
-clear;
-x=0.5:0.5:5.5;
-for i=1:11
- y(i)=0.9846*ln(x(i))+1.0004;
-end
-plot(x,y)
+clc; +clear; +x=0.5:0.5:5.5; +for i=1:11 + y(i)=0.9846*log(x(i))+1.0004; +end +plot(x,y) xtitle("y vs x","x","y")
\ No newline at end of file |