Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
Apoorva Srivastava
Apoorva Srivastava le 24 Juin 2019
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

Réponses (1)

Steven Lord
Steven Lord le 24 Juin 2019
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.

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by