photo

Satuk Bugrahan


Active since 2016

Followers: 0   Following: 0

Statistics

MATLAB Answers

0 Questions
4 Answers

RANK
3,796
of 300,759

REPUTATION
14

CONTRIBUTIONS
0 Questions
4 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
3

RANK
 of 21,081

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 170,890

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Answered
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 years ago | 1

| accepted

Answered
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 years ago | 1

| accepted

Answered
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 years ago | 0

Answered
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 years ago | 1