reza aghaee
Followers: 0 Following: 0
Statistics
All
RANK
204 455
of 295 467
REPUTATION
0
CONTRIBUTIONS
4 Questions
0 Answers
ANSWER ACCEPTANCE
75.0%
VOTES RECEIVED
0
RANK
of 20 234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
Counting the number of the unique value in each row of a matrix without using for loop
M = randi(21,[1000000,9]); counter = zeros(size(A,1),1); for j = 1 : size(A,1) a = unique(Mat(j,:)); counter(j) ...
nästan 4 år ago | 1 answer | 0
1
answerQuestion
create datatip on a surface
a = 0 : 0.1 : 1; b = 0 : 0.1 : 1; [bb,aa] = meshgrid(b,a); Acc = aa.^2 - bb.^2; ss = surf(aa,bb,Acc); c = a(2)^2 - b(4).^2;...
mer än 4 år ago | 1 answer | 0
1
answerQuestion
runtime of sparse matrix components allocation
Nobs = 20000; K = 20; tic H = sparse([],[],[],Nobs,Nobs,4*K*Nobs); for j = 1 : Nobs jj = randi(Nobs,1,K); H(j,...
mer än 4 år ago | 1 answer | 0
1
answerQuestion
Time of sparse matrix components allocation
Nobs = 20000; K = 20; tic H = sparse([],[],[],Nobs,Nobs,4*K*Nobs); for j = 1 : Nobs jj = randi(Nobs,1,K); H(j,jj) ...
mer än 4 år ago | 2 answers | 0