| T O P I C R E V I E W |
| tlab |
Posted - 01/05/2005 : 4:33:05 PM Origin Version (Select Help-->About Origin): 7 Operating System: win2000
Can anybody help me and tell me how to get the following parameter by labTalk?
1. columns and rows of current matrix 2. how to set [i,j] cell value?
Thanks a lot.
Regards.
tlab
|
| 1 L A T E S T R E P L I E S (Newest First) |
| Mike Buess |
Posted - 01/05/2005 : 8:22:40 PM 1. Use the Matrix command.
//Get the number of columns and rows... matrix -pg DIM var1 var2; var1=; // number of columns? VAR1=20 var2=; // number of rows? VAR1=10
//Set the number of columns and rows... matrix -ps DIM 20 10;
2. Use the cell function.
cell(rowNum,colNum) = value;
Mike Buess Origin WebRing Member |