Bug: size(I, 1)*size(I, 2) returns size(I, 1) Instead of Product

1 次查看(过去 30 天)
I = imread('image.png');
Why does
size(I, 1)*size(I, 2)
return the value of size(I, 1) instead of the product? It gives the product if I do
a = size(I, 1);
b = size(I, 2);
a*b

回答(1 个)

Steven Lord
Steven Lord 2019-6-24
This works for me. Let's make sure you haven't overloaded the size function. What does this command return?
which -all size
Also check if the variable I has size 1 in the second dimension.

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by