A(1:2,2:3) how this will work

 Accepted Answer

I suggest you to do matlab onramp course which is interesting to learn matlab
>> A=rand(3)
A =
0.1039 0.8697 0.4440
0.1463 0.1558 0.3227
0.7502 0.8602 0.2286
>> A(1:2,2:3)
ans =
0.8697 0.4440
0.1558 0.3227
>>

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!