Symbolic Matrix

版本 1.2.0.0 (2.0 KB) 作者: Zachary Danziger
Creates a matrix composed of properly indexed symbolic elements.
1.1K 次下载
更新时间 2013/11/21

查看许可证

A matrix of symbolic elements is reasonably useful for many analytic linear algebra applications, and for analytic vector, matrix and tensor differentiation.

This function produces a matrix of arbitrary dimension of symbolic elements that are indexed by their position in the symbolic matrix for ease of reference.

EXAMPLE
>> M = symMat([2 2],'m','real')
M =
[ m11, m12]
[ m21, m22]
>> class(M)
ans =
sym
>> det(M)
ans =
m11*m22 - m12*m21

引用格式

Zachary Danziger (2024). Symbolic Matrix (https://www.mathworks.com/matlabcentral/fileexchange/26729-symbolic-matrix), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2009a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Linear Algebra 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.2.0.0

fixed index printing reversal for matrices with dimensions greater than

1.1.0.0

An update has been made such that the element indexing conforms to standard matrix notation: i.e., e153 is now the element of row 1, column 5, layer 3.

1.0.0.0