Effacer les filtres
Effacer les filtres

Array division of two non-zero arrays returns zero

3 vues (au cours des 30 derniers jours)
GCats
GCats le 18 Juin 2021
Réponse apportée : Matt J le 18 Juin 2021
Hi everyone!
I have 2 very long arrays X and Y (each with dimensions 16384x1) with the first one with values in the range 0.230286000000000-0.189370000000000 and the second one with range 12.191100000000000-0.041792500000000.
I need to perform array divison Y/X so to get a matrix of 16384x16384. However, when I perform the division all the entries are zero. This is the format I'm using:
format long
W = double(Y)/double(X);
Any hints on where the problem may be?
Thank you!

Réponse acceptée

Matt J
Matt J le 18 Juin 2021
W = double(Y(:))./double(X(:).');

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by