码迷,mamicode.com
首页 > 其他好文 > 详细

矩阵及其运算(三):矩阵的转置

时间:2015-04-06 00:57:16      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

  矩阵的转置

数学定义:把矩阵A的行换成同序数的列得到的一个新矩阵,叫做A的转置矩阵.


 

    Public Function Trans(Optional ByVal tMatrix As Matrix = Nothing)
        If tMatrix Is Nothing Then
            tMatrix = Me 参数为空,默认为自身转置
        End If
        Dim tempMatrix As New Matrix(tMatrix.Col, tMatrix.Row)
        For i = 1 To tMatrix.Col
            For j = 1 To tMatrix.Row
                tempMatrix.Item(i, j) = tMatrix.Item(j, i)
            Next j
        Next i
        Return tempmatrix
    End Function

 

矩阵及其运算(三):矩阵的转置

标签:

原文地址:http://www.cnblogs.com/experdot/p/4395006.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!