区别是:
eigen adjoint指的是本证矩阵。
transpose指的是使变位;使变调;变换顺序;进行变换。
详细解释:
eigen 英['eɪdʒən] 美['eɪdʒən] 。
[词典] 特征的,本征; 。
[例句]He has done experiments complementary to those of Eigen.。
他做了一些实验,作为对艾根实验的补充。
adjoint 英[ə'dʒɔɪnt] 美[ə'dʒɔɪnt] 。
n. 共轭; 伴随矩阵; 。
[例句]In this paper the idea of synchronous vector and adjoint matrix are proposed.。
本文提出了同步矢量和伴生矩阵的概念。
transpose 英[trænˈspəʊz] 美[trænˈspoʊz] 。
vt. <数>移项; 使变位; <音>使变调; 变换顺序; 。
vi. 进行变换; 。
n. 转置阵;
[例句]Genetic engineers transpose or exchange bits of hereditary material from one organism to the next.。
遗传工程师将某一生物的小段遗传物质调换到另一生物,或与其互换。
调换的英文:exchange;redeploy;swap;transpose;transposi;tionconversion;switching.。
相关词条:
1、redeployment.。
2、metathesis.
3、transposition.。
4、transpose.
5、transposal.
相关语句:
1、微处理器行业两大巨头Intel和AMD的霸主地位要调换位置吗?
Will the two magnates in the microprocessors, Intel and AMD, exchange their hegemony positions?。
2、他将两枚邮票的位置调换了一下。
He reversed the position of the two stamps.。
3、你们要做的就是调换单词的位置以使句子意义通顺。
Your task is to interchange words so that the sentence makes sense.。
transpose的中文名是:移调。
卡西欧电子琴可以这样移调,上升每个半音依次是#C=bD、D、bE、E、F、#F=bG、G、#G=bA、A、bB、B、回到C,下降就反过来。
有了移调这个功能以后,学弹简谱会很简单,调好调子以后,1总是对应中央C的琴键,不用管调号需要的黑键了。当然简谱上表了升降号的还是要用到黑键的。简单的说,从Do开始,往右用+,往左用-,把黑白键都算上,升Do就是+1,依次类推。
我先来一个举例:
arr = np.arange(16).reshape((2, 2, 4))。
arr的array是这样的
array([[[ 0, 1, 2, 3],。
[ 4, 5, 6, 7]],。
[[ 8, 9, 10, 11],。
[12, 13, 14, 15]]])。
我们对arr进行transpose转置,arr2 = arr.transpose((1,0,2)),结果是这样:
array([[[ 0, 1, 2, 3],。
[ 8, 9, 10, 11]],。
[[ 4, 5, 6, 7],。
[12, 13, 14, 15]]])。
这是怎么来的呢。
arr.transpose((1,0,2))的1,0,2三个数分别代表shape()的三个数的顺序,初始的shape是(2,2,4),也就是2维的2 x 4矩阵,索引分别是shape的[0],[1],[2],arr.transpose((1,0,2))之后,我们的索引就变成了shape[1][0][2],对应shape值是shape(2,2,4),所以矩阵形状不变。
与此同时,我们矩阵的索引也发生了类似变化,如arr中的4,索引是arr[0,1,0],arr中的5是arr[0,1,1],变成arr2后,4的位置应该是在[1,0,0],5的位置变成[1,0,1],同理8的索引从[1,0,0]变成[0,1,0]。
表示对矩阵或者数组转置,比如
A=[1,2,3;4,5,6;7,8,9]。
B=transpose(A)
执行结果为:
A =
1 2 3。
4 5 6。
7 8 9。
B =
1 4 7。
2 5 8。
3 6 9。
自己可以试试!!