HOW TO CREATE THİS MATRİX

100x100 matrix
0 1 2 ....... 99
1 2 3 ....... 100
2 3 4 ....... 101
. . . ........ .......
. . . ....... ........
. . . ....... .......
99 100 101 102 ..... 198

3 Kommentare

HilaN
HilaN am 5 Mär. 2019
Bearbeitet: madhan ravi am 5 Mär. 2019
a=[];
N=100;
T=N;
for i=1:N
a(i,:) = [i-1:1:T-1];
T=T+1;
end
MERT METIN
MERT METIN am 5 Mär. 2019
no right run
HilaN
HilaN am 5 Mär. 2019
why not? this is the matrix you wanted, or I didn't got right what you are asking..

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Stephan
Stephan am 5 Mär. 2019
Bearbeitet: Stephan am 5 Mär. 2019

0 Stimmen

Hi,
beginning from R2016b you can use:
A = [0:99] + [0:99]'
or - with respect to Madhans comment for prior releases:
B = bsxfun(@plus, [0:99], [0:99]')
Best regards
Stephan

8 Kommentare

MERT METIN
MERT METIN am 5 Mär. 2019
no :(
Stephan
Stephan am 5 Mär. 2019
Whats wrong with it? For me it gives exactly the result you wanted. So please clarify.
MERT METIN
MERT METIN am 5 Mär. 2019
ıt is my homework and this solution is not basic. I need basic solution. we dont learn bsxfun function :(
MERT METIN
MERT METIN am 5 Mär. 2019
my Matlab version is 2018b
Stephan
Stephan am 5 Mär. 2019
Bearbeitet: Stephan am 5 Mär. 2019
A = [0:99] + [0:99]'
is basic - it could not be more basic... But i guess you have to write something like a loop.
madhan ravi
madhan ravi am 5 Mär. 2019
People here don’t do obvious homework problems, come up with the code that you have tried.
Stephan
Stephan am 5 Mär. 2019
Madhan is right. Show your attempts so far and tell us where your secific problems are.
MERT METIN
MERT METIN am 5 Mär. 2019
this question is not only one. ı have another questions from homework but ı did others. Just this question ı did not. Thank you for everything.

Melden Sie sich an, um zu kommentieren.

madhan ravi
madhan ravi am 5 Mär. 2019

0 Stimmen

Just add the column vector which goes from 0 to 99 (step size 1) with the row vector which also has the same starting point and ending point as same as the column vector (step size 1).
doc colon

1 Kommentar

madhan ravi
madhan ravi am 5 Mär. 2019
If your version is prior to 2016b use bsxfun() with plus.

Melden Sie sich an, um zu kommentieren.

Andrei Bobrov
Andrei Bobrov am 5 Mär. 2019

0 Stimmen

hankel(0:99,(0:99)+99);

Kategorien

Produkte

Version

R2018b

Gefragt:

am 5 Mär. 2019

Bearbeitet:

am 5 Mär. 2019

Community Treasure Hunt

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

Start Hunting!

Translated by