Sie sind auf Seite 1von 2

>> x=[10:1:20]

x=

10 11 12 13 14 15 16 17 18 19 20
>> y1=sech(x)

y1 =

1.0e-004 *

Columns 1 through 8

0.9080 0.3340 0.1229 0.0452 0.0166 0.0061 0.0023 0.0008

Columns 9 through 11

0.0003 0.0001 0.0000


>> y2=csch(x)

y2 =

1.0e-004 *

Columns 1 through 8

0.9080 0.3340 0.1229 0.0452 0.0166 0.0061 0.0023 0.0008

Columns 9 through 11

0.0003 0.0001 0.0000


>> y3=coth(x)

y3 =

Columns 1 through 8

1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000 1.0000

Columns 9 through 11

1.0000 1.0000 1.0000


>> Tabel=[x;y1;y2;y3]'

Tabel =

10.0000 0.0001 0.0001 1.0000


11.0000 0.0000 0.0000 1.0000
12.0000 0.0000 0.0000 1.0000
13.0000 0.0000 0.0000 1.0000
14.0000 0.0000 0.0000 1.0000
15.0000 0.0000 0.0000 1.0000
16.0000 0.0000 0.0000 1.0000
17.0000 0.0000 0.0000 1.0000
18.0000 0.0000 0.0000 1.0000
19.0000 0.0000 0.0000 1.0000
20.0000 0.0000 0.0000 1.0000
>> judul='angka sech cosech coth'

judul =

angka sech cosech coth

>> disp(judul),disp(Tabel)
angka sech cosech coth
10.0000 0.0001 0.0001 1.0000
11.0000 0.0000 0.0000 1.0000
12.0000 0.0000 0.0000 1.0000
13.0000 0.0000 0.0000 1.0000
14.0000 0.0000 0.0000 1.0000
15.0000 0.0000 0.0000 1.0000
16.0000 0.0000 0.0000 1.0000
17.0000 0.0000 0.0000 1.0000
18.0000 0.0000 0.0000 1.0000
19.0000 0.0000 0.0000 1.0000
20.0000 0.0000 0.0000 1.0000

Das könnte Ihnen auch gefallen