
Koushik Vemula
MathWorks
Followers: 0 Following: 0
Statistics
0 Questions
10 Answers
RANK
2,494
of 297,527
REPUTATION
24
CONTRIBUTIONS
0 Questions
10 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
5
RANK
of 20,454
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 159,075
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Optimtool not enough arguments
According to my understanding you are facing this problem because of the way you are trying to access the function. You need...
5 years ago | 0
Can I derive a dependent variable in Matlab?
According to my understanding you want to create a variable ‘y’ which is dependent on variable ‘x’ You can do it using ‘syms’...
5 years ago | 1
| accepted
cumulative maximum loss code
According to my understanding you have a variable ‘x’ which has ‘n’(say) number of values. You would like to find the value of...
5 years ago | 0
Make probability matrix from data set
According to my understanding, you’d like to have a matrix (say ‘Prob’) which stores the data values in an n-by-3 matrix where f...
5 years ago | 0
how to access compass formatting details?
In MATLAB there is a "polarplot" function that allows you to update the properties of the polar axes. Please see the following d...
5 years ago | 1
How can I convert this pseudo code to matlab?
According to what I understand the pseudo code you’ve written is correct with some minor points to be taken under consideration....
5 years ago | 0
Manipulating matrix with 'for' loop
According to what I understand you want to change the values of 'main diagonal’ and ‘adjacent diagonals’ of the given matrix. ...
5 years ago | 0
Find n for inverse of e approximation
According to what I understand, you are trying to get the value of ‘accurate_n’ which gives you a tolerance of ‘0.0001’. The pro...
5 years ago | 0
| accepted
How to take a derivative of x with respect to time.
According to what I understand, you are trying to get the differentiation of variable ‘o’ with respect to the parameter ‘t’. ...
5 years ago | 0
Why does x(x+y) dy give a x^3 component?
Both answers are correct. d/dy[ x*(x+y)^2/2 ] = d/dy[ (x^3)/2 + x^2*y + y^2*x/2 ] = x*(x + y) d/dy[ x*y*(2*x+y))/2 ] = x*(x ...
5 years ago | 3
| accepted