comparison test/octave.test/matrix/logspace-1.m @ 2742:eeb061f9cdbf

[project @ 1997-02-26 04:29:07 by jwe]
author jwe
date Wed, 26 Feb 1997 04:29:48 +0000
parents
children 41d3a7da0467
comparison
equal deleted inserted replaced
2741:0d126fbe022d 2742:eeb061f9cdbf
1 x1 = logspace (1, 2);
2 x2 = logspace (1, 2, 10);
3 x3 = logspace (1, -2, 10);
4 x4 = logspace (1, pi, 10);
5 (size (x1) == [1, 50] && x1(1) == 10 && x1(50) == 100
6 && size (x2) == [1, 10] && x2(1) == 10 && x2(10) == 100
7 && size (x3) == [1, 10] && x3(1) == 10 && x3(10) == 0.01
8 && size (x4) == [1, 10] && x4(1) == 10 && x4(10) == pi)