Community Profile

photo

Zoya


Last seen: etwa ein Jahr vor Aktiv seit 2023

Followers: 0   Following: 0

Statistiken

  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Creating a mxn matrix that is all zeros except for the middle row and middle column which are 1s
% create a 6x6 matrix of zeros matrix = zeros(6); % set the middle two rows and columns to 1's matrix(3:4, :) = 1; matrix(...

etwa ein Jahr vor | 0