Community Profile

photo

AYUSH GURTU


Last seen: más de 3 años hace Con actividad desde 2019

Followers: 0   Following: 0

Estadísticas

  • First Answer

Ver insignias

Feeds

Ver por

Respondida
I get an error, what's wrong? on Sparse matrix logic and answer
function [matrix]=sparse2matrix(incell) S=size(incell); q=S(2)-2; msize=incell{1}; mdef=incell{2}; matrix=repmat(mdef,msize...

casi 5 años hace | 4

Respondida
how to replace elements in top third, middle third, and bottom third of matix
function T = trio (n, m) T = randi (10, (3 * n) , m); T (1:n,:) = 1; T ((n+(1:n)),:) = 2; T (n+(n+(1:n)):end,:) = 3; end

casi 5 años hace | 11

Respondida
matrix related matlab query
function [mmr, mmm] = minimax(M) mmr = (max(M,[],2)-min(M,[],2))'; mmm = max(M(:))-min(M(:)); end

casi 5 años hace | 0