blob: 164cab3f17cab06c92b3744468c785db025a499d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
function outsize = FA_SZ_2(insize)
// function outsize = FA_SZ_2(insize)
// -----------------------------------------------------------------
// Returns the second element of the size array.
//
// Input data:
// insize: size of input argument. It is an array of 2 strings.
// The first string specifies the number of rows.
// The second string specifies the number of columns.
//
// Output data:
// outsize: second element of the insize array.
//
// Status:
// 08-Dec-2007 -- Raffaele Nutricato: Author.
// 08-Dec-2007 -- Alberto Morea: Test Ok.
// -----------------------------------------------------------------
outsize = insize(2);
endfunction
|