view matrix.yeti @ 1:7aedeab67b08

Misc bits
author Chris Cannam
date Fri, 30 Nov 2012 18:06:47 +0000
parents
children 51c7fea7d805
line wrap: on
line source
module matrix;

zeros n =
    map \0 [1..n];

matrix rows cols = 
    array (map \(new double[cols]) [1..rows]);

{ matrix }