How to manually add matrices using only for loops

I have 2 matrices which have no conditions C and D. How do I express using only for loops that they should undergo addition to create another matrix.

댓글 수: 4

Can you elaborate once, what you want to do.
I have to do C + D which is matrix addition however I can't use the in built function in MATLAB. I can only use for loops. I have to do the same for C - D and C*D. This is all within a function hence C and D are random matrices.
Adam
Adam 2019년 12월 11일
Your matrices need to have one condition - that they are the same size, otherwise how are you defining addition?
That condition was automatically assumed by me since it's the fundamental of matrix addition.

댓글을 달려면 로그인하십시오.

답변 (1개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 12월 10일
Here Loop is not required
result=C+D

댓글 수: 2

The question i'm trying to answer says I can't use the in-built functions.
Hi,
Using '+' in code will not be considered that you have used inbuilt function.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2019년 12월 7일

댓글:

2019년 12월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by