summaryrefslogtreecommitdiff
path: root/modules/polynomials/tests/unit_tests/tril.dia.ref
blob: 347b38577923a1058647fe2844934118c2c9c863 (plain)
1
2
3
4
5
6
7
8
9
10
// =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) 2013 - S/E - Sylvestre Ledru
//
//  This file is distributed under the same license as the Scilab package.
// =============================================================================
// <-- CLI SHELL MODE -->
s=poly(0,'s');
a=tril([s,s;s,1]);
assert_checkequal(a, [s,0*s;s,1]);