toggle percentual from matrix
1 回表示 (過去 30 日間)
古いコメントを表示
how toggle % from matrix?
per=5;
a=magic(4)
i want to toggle from each element per (5%)
0 件のコメント
採用された回答
Star Strider
2023 年 9 月 30 日
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 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!