RosettaCodeData/Task/Create-a-two-dimensional-array-at-runtime/Zkl/create-a-two-dimensional-array-at-runtime-2.zkl

8 lines
207 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
var [const] GSL=Import("zklGSL"); // libGSL (GNU Scientific Library)
rows:=ask("Rows: ").toInt();
cols:=ask("columns: ").toInt();
m:=GSL.Matrix(rows,cols);
m[1,2]=123;
m.format().println();
println(m[1,2]);