Overview
Comment:More sanity checks
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | origin/master | trunk
Files: files | file ages | folders
SHA3-256: 9e64008a9c7f360c4037918301579ce7f19b3e70f7d6719d5145056f312becc9
User & Date: gawthrop@users.sourceforge.net on 2003-08-19 16:20:33.000
Other Links: branch diff | manifest | tags
Context
2003-08-19
16:21:58
Added ; to prevent output check-in: cd55f939af user: gawthrop@users.sourceforge.net tags: origin/master, trunk
16:20:33
More sanity checks check-in: 9e64008a9c user: gawthrop@users.sourceforge.net tags: origin/master, trunk
16:19:53
Covenverst U* to a c-header file check-in: 358cf70240 user: gawthrop@users.sourceforge.net tags: origin/master, trunk
Changes
41
42
43
44
45
46
47





48
49
50
51
52
53
54
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59







+
+
+
+
+







  if n_u>0
    if n_u!=length(U)/n_U
      error("U must be a column vector with n_u*n_U components");
    endif
  else
    n_u = length(U)/n_U;	# Deduce n_u from U if no system
  endif
  
  [n_x0,m_x0] = size(x_0);
  if n_x0<>n_x
    error(sprintf("x_0 must be a column with length %i", n_x));
  endif
  

  [n,m]=size(tau);
  if (n != 1 )
    error("tau must be a row vector of times");
  endif
  

MTT: Model Transformation Tools
GitHub | SourceHut | Sourceforge | Fossil RSS ]