Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我需要翻译成 CI 的遗留 Matlab 代码中找到以下字符串:
x=fminsearch(@pmveqf,[30 30]',[],pm);
有人可以解释[30 30]'的含义吗?
在 Matlab 中?
我知道什么是共轭转置,但由于它在这里应用于一个空矩阵,并且这个空矩阵是对称的,我无法理解它。
我错过了什么或我错在哪里?
这不是一个空矩阵,它是一个 [1x2] 矩阵,当转置时,它将是一个 [2x1] 矩阵。
这里没有正常转置和共轭转置之间的区别,因为所有值都是实数。
[30 30]' 只是列矩阵
[30; 30]