Matrix multiplication with constant
이전 댓글 표시
RR=5;
RS=750:150:3600;
for i=1:length(RS)
k(i)=RR.*RS(i)
end
am i not supposed to get the answer k(i) in the form of matrix ?
Here RS is matrix of size 1*20.
if i want to get k(i) in terms of 1*20 , what shall i do ? Please tell me. Thankyou.
채택된 답변
추가 답변 (1개)
madhan ravi
2020년 7월 22일
k = RR * RS
카테고리
도움말 센터 및 File Exchange에서 Electromagnetics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!