xxxxxxxxxx
13
// LoadTable 2024 kouichi.matsuda@gmail.com
let table;
function preload() {
table = loadTable('data.csv', 'csv');
}
function setup() {
for (let r = 0; r < table.getRowCount(); r++)
for (let c = 0; c < table.getColumnCount(); c++) {
print(table.getString(r, c));
}
}