The simplest way to fill the data matrix with a constant value is to use the built-in math interpreter. Open the math interpreter (button ) and enter the following command line (don't forget to click "Execute" after entering the command line): ALL=value.
Example: ALL=3.141 fills all cells of the matrix by the value 3.141.
Another way to fill the entire matrix by a constant value is to use DLabPascal, writing the following tiny program which fills the matrix by the value 19.5:
program filldstore;
begin
DStore.Fill(0,0,0,0,19.5);
end.
|