2.1 ADDITION AND SUBTRACTION
matrix相加、减只是简单的值如
VectA=[8 5 4];
VectB=[10 2 7];
2.2 ARRAY MULTIPLICATION
matrix相乘
A*B
要求A的列要等B的行,结果是A行B列。。就是线性代数那种矩阵乘法
2.3 ARRAY DIVISION
matrix相除
Identity matrix 对角线为1,其它为0,行列相同的,是单位矩阵
Inverse matrix A*B=单位矩阵 A和B互为反转矩阵
左除与右除
左除
AX = B
X=A\B
右除
XA = B
X=B/A
2.4 ELEMENT-BY-ELEMENT OPERATIONS
a.*b = [a1*b1 a2*b2 a3*b3 a4*b4]
a./b = [a1/b1 a2/b2 a3/b3 a4/b4]
a.^b = [(a1)b1 (a2)b2 (a3)b3 (a4)b4]
2.5 BUILT-IN FUNCTIONS FOR ANALYZING ARRAYS
略
2.6 RANDOM NUMBERS
rand 创建0到1的随机数
rand(1,n) 创建1行N列0到1的随机数
rand(n) 创建N行N列0到1的随机数
randperm(n) 创建1到N的整数随机数
randi(imax) 创建1到imax的整数随机数
randi(imax,n) 创建1到imax的整数n * n matrix
randi(imax,m,n) 创建1到imax的整数m * n matrix
分享到:
相关推荐
Despite the increasing use of computers, the basic need for mathematical tables continues. Tables serve a vital role in preliminary surveys of problems before programming for machine operation, and ...
1. 手册名称与内容:该文档是一本名为《Handbook of Mathematical Functions with Formulas, Graphs, and Mathematical Tables》的手册,它包含了数学公式的列表、相关函数的图像以及数学表格。 2. 编辑和出版信息...
SOLUTIONS_MANUAL_FOR_Solving_Applied_Mathematical_Problems_with_MATLAB_2009很强大的软件,正在学习当中,拿出来跟大家一起分享,共同进步,感谢CSDN!!!
从给定文件信息来看,这份材料是关于数理统计领域的一本书籍的片段,具体来说是《Mathematical Statistics with Applications》的第7版。书籍内容涵盖了连续型和离散型分布,以及它们的概率密度函数、均值、方差等。...
Mathematical Statistics with Resampling and R is a one-term undergraduate statistics textbook aimed at sophomores or juniors who have taken a course in probability (at the level of, for instance, Ross...
3D Computer Graphics - A Mathematical Introduction with OpenGL
《Mathematical Modeling With Excel》是由Jones & Bartlett Learning在2009年出版的一本专著,旨在教授读者如何利用Microsoft Excel进行数学建模。这本书深入浅出地介绍了使用Excel进行数学建模的基本概念、方法和...
《3D Computer Graphics - A Mathematical Introduction With OpenGL》是一本针对初学者的计算机图形学入门教材,作者通过深入浅出的数学理论和OpenGL编程实例,帮助读者理解并掌握3D图形的创建与渲染技术。...
《3D Computer Graphics - A Mathematical Introduction With OpenGL》是一本深入浅出地介绍三维计算机图形学原理及其实现方法的专业书籍。该书由Samuel R. Buss撰写,他是加州大学圣地亚哥分校的数学与计算机科学...
This introduction to 3D computer graphics emphasizes fundamentals and the mathematics underlying computer graphics, while also covering programming techniques using OpenGL, a platform-independent ...
Title: Applied Numerical Methods with MATLAB for Engineers and Scientists, 4th Edition Author: Steven Chapra Length: 720 pages Edition: 4 Language: English Publisher: McGraw-Hill Education Publication...
This is a lively introductory textbook in numerical methods, MATLAB, and technical computing, with an emphasis on the informed use of mathematical software. Readers will learn how to use the ...
《Matlab - Elementary Mathematical and Computational Tools for Electrical and Computer Engineers Using MATLAB》是一本专为电气与计算机工程师设计的MATLAB入门教程。这本书旨在介绍MATLAB这一强大的数学计算...
MATLAB,全称Mathematical Language for Computing,是一种被广泛使用的数学计算软件,尤其在科学研究、工程计算和数据分析等领域具有极高的应用价值。随着深度学习的兴起,MATLAB也逐渐发展出一套完整的深度学习...
《全面详解LTE MATLAB建模、仿真与实现》的英文原版,分3个部分深入讲解了LTE标准的物理层(PHY):关键核心技术的理论;简明扼要地讨论了LTE标准规范;用于仿真LTE标准所需的MATLAB算法。 通过一系列的程序,展现了...