toggle percentual from matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Luca Re
il 30 Set 2023
Commentato: Star Strider
il 30 Set 2023
how toggle % from matrix?
per=5;
a=magic(4)
i want to toggle from each element per (5%)
0 Commenti
Risposta accettata
Star Strider
il 30 Set 2023
Perhaps this —
per=5;
a=magic(4)
apr = a*(1-0.05) % 95% Of The Value
apr = a*0.05 % 5% Of The Value
.
4 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Sparse Matrices 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!