blob: 91d7ebd68d2d6024a3404af0b8e6f04a60461687 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
function opoutsize = FA_SZ_OPLOGOR(in1size,in2size)
// function opoutsize = FA_SZ_OPLOGOR(in1size,in2size)
// -----------------------------------------------------------------
// Alias of FA_SZ_OPDOTSTAR.
//
//
// Status:
// 08-Mar-2008 -- Raffaele Nutricato: Author.
// 08-Mar-2008 -- Alberto Morea: Test Ok.
//
// Copyright 2008 Raffaele Nutricato & Alberto Morea.
// Contact: raffaele.nutricato@tiscali.it
// -----------------------------------------------------------------
opoutsize = FA_SZ_OPDOTSTAR(in1size,in2size);
endfunction
|