How to get matrix weighted average
조회 수: 1 (최근 30일)
이전 댓글 표시
Suppose i have matrix A=[1;2;3]. I want the answer as = [1/6;2/6;3/6]
댓글 수: 0
채택된 답변
KALYAN ACHARJYA
2019년 9월 24일
편집: KALYAN ACHARJYA
2019년 9월 24일
A=[1;2;3];
result=A./6
or
result=A/6
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 NaNs에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!