- Machine Learning with R Quick Start Guide
- Iván Pastor Sanz
- 38字
- 2021-06-24 16:01:30
Representing matrices
To represent a matrix of n elements with r rows and c columns, the matrix command is used:
m<-matrix(c(1,2,3,4,5,6), nrow=2, ncol=3)
m
## [,1] [,2] [,3]
## [1,] 1 3 5
## [2,] 2 4 6
推薦閱讀
- 構建高質量的C#代碼
- 流處理器研究與設計
- 21天學通Java
- Lightning Fast Animation in Element 3D
- Mastering ServiceNow Scripting
- 深度學習與目標檢測
- 智能鼠原理與制作(進階篇)
- INSTANT Adobe Story Starter
- Hands-On SAS for Data Analysis
- Machine Learning with Spark(Second Edition)
- 簡明學中文版Flash動畫制作
- Appcelerator Titanium Smartphone App Development Cookbook(Second Edition)
- Arduino創意機器人入門:基于Mixly
- 51單片機應用開發實戰手冊
- Keras 2.x Projects