vcol#
- Mapdl.vcol(ncol1='', ncol2='', **kwargs)#
Specifies the number of columns in matrix operations.
APDL Command:
*VCOL- Parameters:
- ncol1
Number of columns to be used for Par1 with
*MXXoperations. Defaults to whatever is needed to fill the result array.- ncol2
Number of columns to be used for Par2 with
*MXXoperations. Defaults to whatever is needed to fill the result array.
Notes
Specifies the number of columns to be used in array parameter matrix operations. The size of the submatrix used is determined from the upper left starting array element (defined on the operation command) to the lower right array element (defined by the number of columns on this command and the number of rows on the
*VLENcommand).The default NCOL is calculated from the maximum number of columns of the result array (the
*DIMcolumn dimension) minus the starting location + 1. For example,*DIM,R,,1,10and a starting location of R(1,7) gives a default of 4 columns ( starting with R(1,7), R(1,8), R(1,9), and R(1,10)). Repeat operations automatically terminate at the last column of the result array. Existing values in the rows and columns of the results matrix remain unchanged where not overwritten by the requested input or operation values.The column control settings are reset to the defaults after each
*MXXoperation. Use*VSTATto list settings.This command is valid in any processor.