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!