Click or drag to resize
sqx

MatrixM Property

[int] M (Rows)

Namespace:  sqx
Assembly:  SQX (in SQX.dll) Version: 1.0.2.6 (1.0.2.6)
Syntax
C#
public SqlInt32 M { get; }

Property Value

Type: SqlInt32
Examples
SQL
-- NOTE: Selecting a proprety is not the same as selecting a Field.
declare @A sqx.Matrix = sqx.ZeroMatrix(10,5)
select @A.M, @A.N, @A.M [Rows], @A.N [Columns]
/*
                        Rows        Columns
----------- ----------- ----------- -----------
10          5           10          5*/
See Also