view test/octave.test/matrix/zeros-1.m @ 5103:e2ed74b9bfa0 after-gnuplot-split

[project @ 2004-12-28 02:43:01 by jwe]
author jwe
date Tue, 28 Dec 2004 02:43:01 +0000
parents 1aeffa048808
children
line wrap: on
line source

x33 = [0, 0, 0; 0, 0, 0; 0, 0, 0];
x23 = [0, 0, 0; 0, 0, 0];
(zeros (3) == x33 && zeros (size (x33)) == x33 && zeros (3, 3) == x33
 && zeros (2, 3) == x23 && zeros (3, 2) == x23')