Matlab (2010b) permute does not work for symbolic arrays

1 次查看(过去 30 天)
>> syms x y z u
>> A = [x y; z u];
>> A =
[x y]
[ ]
[z u]
>> B = permute(A, [2 1]);
>> B =
[x y]
[ ]
[z u]
However
>> B = A.'
works.
This is a problem for multidimensional symbolic arrays.
I know for a fact that permute works correctly with Matlab 2007b since I use both versions simultaneously.
What gives?

采纳的回答

Sean de Wolski
Sean de Wolski 2012-2-24

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by