Name Last modified Size Description
matdde32.zip 2001-04-09 17:21 67K [Einsicht / Browse] matdde7.zip 2008-10-07 10:54 66K für Matlab 7
This software ist Freeware, no explicit or implicit warranties are given.
Use at your own risk! Commercial use of this software is permitted
as long as authorship is not violated.
Although this software is for use with Matlab,
it is not originated by MathWorks Inc.
CF_MatTable
clipboard format⚓This format supports, in current implementation, more-than-two-dimensional double arrays, but no complex data.
long header (= 6 for double values) long number_of_dimensions (=n, 0 allowed for scalar values, 1 for vectors) long dimensions[n] (the dimension extents, a variable-length array) double values[k] (the values of the multi-dimensional array, k = ∏i=1n dimensions[i])
Therefore, it's easy to transfer scalar values through CF_MatTable
,
here the fixed record structure is:
struct{ long header; long number_of_dimensions; double value; }examplevar = {6, 0, 2*PI}; // example