product between doubles 200*200
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
ELISABETTA BILLOTTA
am 21 Feb. 2023
Kommentiert: Stephen23
am 22 Feb. 2023
I have a series of 200x200 doubles (they are probability values live prob1=200x200).
I have to do the multiplication between these doubles following this formula
F=1-((1-prob1)* (1-prob2)* (1-prob3))
how can i set up this formula and this multiplication?
1 Kommentar
Akzeptierte Antwort
Weitere Antworten (1)
Anton Kogios
am 21 Feb. 2023
I assume you mean element by element multiplication:
prob1 = rand(200,200);
prob2 = rand(200,200);
prob3 = rand(200,200);
F = 1-((1-prob1).*(1-prob2).*(1-prob3));
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!