Matlab (2010b) permute does not work for symbolic arrays
Show older comments
>> 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?
Accepted Answer
More Answers (0)
Categories
Find more on Symbolic Math Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!