Statistics
3 Questions
0 Answers
RANK
185,120
of 301,252
REPUTATION
0
CONTRIBUTIONS
3 Questions
0 Answers
ANSWER ACCEPTANCE
100.0%
VOTES RECEIVED
0
RANK
of 21,207
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 173,657
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
Feeds
Question
Using a function in another function
I'm trying to use a function in another. For example, there's a defined function: function y=super(x) y=x.^2; end and I want...
5 years ago | 1 answer | 0
1
answerQuestion
sort an array without using the command sort
function sortvector(v) v1=zeros(1,length(v)); for i=1:length(v) v1(i)=min(v); v(find(v==v1(i)))=[]; end disp(v1) ...
5 years ago | 1 answer | 0
1
answerQuestion
How can I form a vector operating with another?
I'm trying to do the operaton (2^n)/2n with n=(0:100) how can I form a vector of the same size using the results?
5 years ago | 1 answer | 0

