How to get matrix weighted average
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Supriya Gain
il 24 Set 2019
Modificato: KALYAN ACHARJYA
il 24 Set 2019
Suppose i have matrix A=[1;2;3]. I want the answer as = [1/6;2/6;3/6]
0 Commenti
Risposta accettata
KALYAN ACHARJYA
il 24 Set 2019
Modificato: KALYAN ACHARJYA
il 24 Set 2019
A=[1;2;3];
result=A./6
or
result=A/6
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su NaNs 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!