summaryrefslogtreecommitdiff
path: root/27/CH5/EX5.2.2/Example_5_2_2.sce
blob: 24574dd95bd925a218a5976414d7ac92986f41f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
clear;
clc;
close;
set(gca(),"auto_clear","off")        //hold on

for x=-20:0.5:20
    y1 = x;
    y=0;
    x1=0;
    //h1=acosh(x);
    plot2d(x,y1,style=-2)
    plot2d(x,y,style=-4)
    plot2d(x1,x,style=-4)
    
end

for x=-5:0.5:5
    y2=-4*x;
    plot2d(x,y2,style=-2)
end