toggle percentual from matrix
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how toggle % from matrix?
per=5;
a=magic(4)
i want to toggle from each element per (5%)
0 commentaires
Réponse acceptée
Star Strider
le 30 Sep 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Sparse Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!