toggle percentual from matrix
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Luca Re
am 30 Sep. 2023
Kommentiert: Star Strider
am 30 Sep. 2023
how toggle % from matrix?
per=5;
a=magic(4)
i want to toggle from each element per (5%)
0 Kommentare
Akzeptierte Antwort
Star Strider
am 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Sparse 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!