SELECT [wct].[MNORM] (
<@Matrix, nvarchar(max),>
,<@NormType, nvarchar(4000),>)
DECLARE @n as int = 9
DECLARE @H as nvarchar(max) = (SELECT wct.NMATRIX2STRING(i,j,val)
FROM (
SELECT
i.SeriesValue - 1 as i,
j.SeriesValue - 1 as j,
1/(i.SeriesValue+j.SeriesValue-1) as val
FROM
wct.SeriesFloat(1,@n,NULL,NULL,NULL)i
CROSS APPLY
wct.SeriesInt(1,@n,NULL,NULL,NULL)j
)n
)
SELECT
x.type,
wct.MNORM(@H,x.type) as norm
FROM (VALUES ('1'),('F'),('M'),('I'),('2'))x(type)
ORDER BY
1
This produces the following result.