photo

VANSHUL CHOUDHARY


Last seen: 1 year ago Active since 2021

Followers: 0   Following: 0

Statistics

  • First Answer

View badges

Feeds

View by

Answered
Creating a submatrix from a matrix
A = rand(4,3); % Get those elements of A that are located in rows 3 to 4 and % column 2 to 3. sub_matrix = A(3:4,2:3);

3 years ago | 1