From 8f4cb78c9b9622fa80fd04c4dcc7619ad40a9b3a Mon Sep 17 00:00:00 2001 From: sloop Date: Fri, 5 Aug 2016 22:40:13 +0800 Subject: [PATCH] Add Basic Method --- CustomView/Advance/[10]Matrix_Method.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CustomView/Advance/[10]Matrix_Method.md b/CustomView/Advance/[10]Matrix_Method.md index 3ac9a61..7a12d65 100644 --- a/CustomView/Advance/[10]Matrix_Method.md +++ b/CustomView/Advance/[10]Matrix_Method.md @@ -26,6 +26,16 @@ ### 基本方法 +基本方法没有什么内容,在此处简单介绍一下。 + +方法 | 简介 +---|--- +equals | 比较两个Matrix的数值是否相同 +hashCode | 获取Matrix的哈希值 +toString | 将Matrix转换为字符串
`Matrix{[1.0, 0.0, 0.0][0.0, 1.0, 0.0][0.0, 0.0, 1.0]}` +toShortString | 将Matrix转换为短字符串
`[1.0, 0.0, 0.0][0.0, 1.0, 0.0][0.0, 0.0, 1.0]` + + ### 数值操作 ### 数值计算