Azzera filtri
Azzera filtri

Using logical operator and maintaining array size

1 visualizzazione (ultimi 30 giorni)
Say I have x = [ 0 0 1 1 1] and y = [ 4 3 6 6 8]
How do I use logical operator so that I maintain the array size? I want the result to say [ 0 0 6 6 8] - so if it's false then make them zero but keep the rest. I'm trying to avoid if or for loops if possible.

Risposta accettata

KALYAN ACHARJYA
KALYAN ACHARJYA il 4 Lug 2019
Modificato: KALYAN ACHARJYA il 4 Lug 2019
Why logical? its simple multiplication.
>> x.*y
ans =
0 0 6 6 8

Più risposte (0)

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by