필터 지우기
필터 지우기

How can i multiply each value from a row to each value of another row.

조회 수: 4 (최근 30일)
Example: A = [1 2 3]
B = [ 4 5 6]
Answer:[ 4 10 18]

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 10월 31일
편집: Ameer Hamza 2020년 10월 31일
A = [1 2 3]
B = [4 5 6]
Answer = A.*B
Result
>> Answer
Answer =
4 10 18

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by