blob: 85868ca28ad611aed24a5e22f01daf9d1fc8a76c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2011 - DIGITEO - Michael Baudin
//
// This file is distributed under the same license as the Scilab package.
// =============================================================================
// <-- CLI SHELL MODE -->
A = spzeros(3,2);
A(3,1) = 2;
string(A)
|