Create a square matrix with a nested loop

-20 -18 -16 -14
-12 -10 -8 -6
-4 -2 0 2
4 6 10 12
can you create it with a loop inside

3 件のコメント

madhan ravi
madhan ravi 2020 年 8 月 31 日
Huh, expecting others to write your homework? Did you try anything at all?
Mehmet ali Karatas
Mehmet ali Karatas 2020 年 8 月 31 日
I tried but I still couldn't. I will be glad if you help.
madhan ravi
madhan ravi 2020 年 8 月 31 日
Post what you have tried, even if it has mistakes.

サインインしてコメントする。

回答 (2 件)

KSSV
KSSV 2020 年 8 月 31 日
編集済み: KSSV 2020 年 8 月 31 日

0 投票

A = zeros(4) ;
A(1,:) = -20:2:-14 ;
A(2,:) = -12:2:-6 ;
A(3,:) = -4:2:2 ;
A(4,:) = 4:2:10 ;

1 件のコメント

Mehmet ali Karatas
Mehmet ali Karatas 2020 年 8 月 31 日
it should form this square matrix with nested loops

サインインしてコメントする。

Clement Val
Clement Val 2020 年 8 月 31 日
編集済み: Clement Val 2020 年 8 月 31 日

0 投票

reshape([-20:2:10], 4, 4)'
Just (half) kidding.
You know how to do a loop?
You know how to index in a 2 dim array?
You know how to increment another variable by two?

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

質問済み:

2020 年 8 月 31 日

編集済み:

2020 年 8 月 31 日

Community Treasure Hunt

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

Start Hunting!

Translated by