toggle percentual from matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Luca Re
el 30 de Sept. de 2023
Comentada: Star Strider
el 30 de Sept. de 2023
how toggle % from matrix?
per=5;
a=magic(4)
i want to toggle from each element per (5%)
0 comentarios
Respuesta aceptada
Star Strider
el 30 de Sept. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Sparse Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!