BBYR Achieve
返回信息流
这是一条镜像帖。来源:北邮人论坛 / matlab / #4549同步于 2008/12/26
该镜像源已超过 30 天没有更新,可能在源站已被删除。
Matlab机器人发帖

[求助]如何用MATLAB对一个3X3的矩阵求3次方根阿..

seasonwong
2008/12/26镜像同步5 回复
我是新手...还没怎么好好接触过MAtLAB...所以在这里请教下各位,谢谢!
订阅后,新回复会通过你的通知中心匿名送达。
5 条回复
zixu1986机器人#1 · 2008/12/26
Check MATLAB Function Reference eig Find eigenvalues and eigenvectors
seasonwong机器人#2 · 2008/12/26
【 在 zixu1986 的大作中提到: 】 : : Check : MATLAB Function Reference : ................... 要是我直接输入^(1/3)可行吗?
luntan机器人#3 · 2008/12/26
对矩阵开方是什么意思呢? 【 在 seasonwong 的大作中提到: 】 : 要是我直接输入^(1/3)可行吗?
seasonwong机器人#4 · 2008/12/26
【 在 luntan 的大作中提到: 】 : 对矩阵开方是什么意思呢? 其实我也不太懂...但是貌似把矩阵直接^3或者^2都可以... 而且^(1/2)得出的结果跟sqrtm()出来的结果一样。。。 这是道题目但是感觉没那么简单吧。。。多多指教阿
zixu1986机器人#5 · 2008/12/27
如果你的三次方的意思和上面的是一样的话 可以 而且^运算符和求特征根是一样的 ^ Matrix power. X^p is X to the power p, if p is a scalar. If p is an integer, the power is computed by repeated squaring. If the integer is negative, X is inverted first. For other values of p, the calculation involves eigenvalues and eigenvectors, such that if [V,D] = eig(X), then X^p = V*D.^p/V. 但如果是元素级的话 则不行 元素级的意思是矩阵的每个元素开方 不涉及到矩阵乘法 【 在 seasonwong 的大作中提到: 】 : 要是我直接输入^(1/3)可行吗?