Community Profile

photo

reza aghaee


Last seen: 4ヶ月 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

All
  • Solver
  • Thankful Level 2
  • Thankful Level 1

バッジを表示

Feeds

表示方法

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

9ヶ月 前

質問


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) ...

約3年 前 | 1 件の回答 | 0

1

回答

質問


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;...

4年弱 前 | 1 件の回答 | 0

1

回答

質問


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,...

4年弱 前 | 0 件の回答 | 0

0

回答

質問


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) ...

4年弱 前 | 2 件の回答 | 0

2

回答