統計
MATLAB Answers
0 質問
4 回答
ランク
of 171,031
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
How can I create x number of circles and then animate them?
function circles(c) rectangle('Position',[-250 -250 500 500]); size =randi([1,100],1,c); k=-size/2 ; l=-size/2 ; m=-10+...
How can I create x number of circles and then animate them?
function circles(c) rectangle('Position',[-250 -250 500 500]); size =randi([1,100],1,c); k=-size/2 ; l=-size/2 ; m=-10+...
9年以上 前 | 1
| 採用済み
回答済み
please help me with this one
V=0:0.2:10 ; th=zeros(1,51); for n=1:51 if V(n)<=1 th(n)=0 ; else th(n)=90-(2*atand(exp(-((V(n)...
please help me with this one
V=0:0.2:10 ; th=zeros(1,51); for n=1:51 if V(n)<=1 th(n)=0 ; else th(n)=90-(2*atand(exp(-((V(n)...
9年以上 前 | 1
| 採用済み
回答済み
Make a matrix having numbers out of 0.5,1,2,4 and 6 randomly distributed
b=randi([0,4],597,1) ; b(b==0)=0.5; b(b==4)=6; b(b==3)=4 ; This code will do it.'6' also in the matrix. If you only wann...
Make a matrix having numbers out of 0.5,1,2,4 and 6 randomly distributed
b=randi([0,4],597,1) ; b(b==0)=0.5; b(b==4)=6; b(b==3)=4 ; This code will do it.'6' also in the matrix. If you only wann...
9年以上 前 | 0
回答済み
how to locate rows that has max values in r*2 matrix?
[~,rows] = max(x,[],1); M = x(sort(rows),:); I think that code wont give you expected answer when you have same ...
how to locate rows that has max values in r*2 matrix?
[~,rows] = max(x,[],1); M = x(sort(rows),:); I think that code wont give you expected answer when you have same ...
9年以上 前 | 1

