summaryrefslogtreecommitdiff
path: root/2.3-1/macros/GeneralFunctions/PrintStepInfo.sci
blob: 8e1c1d02e24707c325b51aec70543ead99d4d14e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
function PrintStepInfo(inputstring,filename,outputtype,formattedstring)
// function PrintStepInfo(inputstring,filename,outputtype,formattedstring)
// -----------------------------------------------------------------
// #RNU_RES_B
// Prints a string by using a predefined format into a file or on
// the stdout.
//
// Input data:
// filename: optional parameter, that specifies the output file.
//           If filename is '' or it is not provided to the function,
//           the string will be printed on the stdout.
// outputtype: 'file' -> prints only on file.
//             'stdout' -> prints only on the stdout.
//             'both' -> prints on both file and stdoud.
//             Default is 'stdout'.
// formattedstring: if 'n' (default) it means that str is considered as a simple string (mputstr).
//                  if 'y' then str is considered formatted according to mfprint syntax
// Output data:
//
// #RNU_RES_E
// Status:
// 02-Jan-2006 -- Nutricato Raffaele: Author.
// 02-Jan-2006 -- Nutricato Raffaele: TEST OK.
//
// Copyright 2007 Raffaele Nutricato.
// Contact: raffaele.nutricato@tiscali.it
// -----------------------------------------------------------------

// ------------------------------
// --- Check input arguments. ---
// ------------------------------
SCI2CNInArgCheck(argn(2),1,4);

if argn(2) < 4
   formattedstring = 'n';
   if argn(2) < 3
      bothout = 'n';
      if argn(2) < 2
         filename = '';
      end
   end
end
if (length(filename) == 0)
   outputtype = 'stdout'; // Prints only on the stdout.
end

blankstring = ['         '];

if ((outputtype=='both') | (outputtype=='stdout'))
   disp(blankstring+'==> '+inputstring);
end

if ((outputtype=='both') | (outputtype=='file'))
   filenamefprintf(filename,'y',blankstring+'==> '+inputstring,formattedstring);
end
endfunction