AYUSH GURTU
Followers: 0 Following: 0
Statistics
0 Questions
3 Answers
RANK
1,956
of 295,448
REPUTATION
32
CONTRIBUTIONS
0 Questions
3 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
15
RANK
of 20,227
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,872
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
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...
5 years ago | 4
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
5 years ago | 11
matrix related matlab query
function [mmr, mmm] = minimax(M) mmr = (max(M,[],2)-min(M,[],2))'; mmm = max(M(:))-min(M(:)); end
5 years ago | 0