考虑三维数组
A = rand(3,4,5);
B = rand(3,4,5);
plot(A(:,1,1),B(:,1,1))
plot(A(1,:,1),B(1,:,1))
这一切都很好,但是
>> plot(A(1,1,:),B(1,1,:))
Error using plot
Data may not have more than 2 dimension
除了使用之外,有没有一种快速的方法来解决这个问题reshape()
?
考虑三维数组
A = rand(3,4,5);
B = rand(3,4,5);
plot(A(:,1,1),B(:,1,1))
plot(A(1,:,1),B(1,:,1))
这一切都很好,但是
>> plot(A(1,1,:),B(1,1,:))
Error using plot
Data may not have more than 2 dimension
除了使用之外,有没有一种快速的方法来解决这个问题reshape()
?