Statistics
RANK
704
of 297,016
REPUTATION
108
CONTRIBUTIONS
1 Question
10 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
40
RANK
6,947 of 20,419
REPUTATION
148
AVERAGE RATING
3.90
CONTRIBUTIONS
2 Files
DOWNLOADS
6
ALL TIME DOWNLOADS
999
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
Error using axesm. It says "checkellipsoid' for input arguments of type 'double'"
Hi! I am getting the following error while using axesm >> axesm Undefined function 'checkellipsoid' for input argumen...
6 years ago | 0 answers | 0
0
answersWhy is the factorial of 0 equal to 1?
A Factorial of a number n can defined as the total number of ways of selecting n different objects. For Example, total number ...
8 years ago | 0
How to generate same set of random numbers?
You can control random number generation using 'rng()' function. The usage is rng(seed). _rng(seed) seeds the random number g...
8 years ago | 1
| accepted
Is 1900 a leap year?
No, 1900 is not a leap year. Condition for an year to be Leap year us that it should be divisible by 4. But if it is century lik...
8 years ago | 2
| accepted
Static variables in MATLAB
Use keyword persistent to declare static variables persistent x; for more information: read here: <https://in.mathworks....
8 years ago | 6
| accepted
Convert a string of numbers to a number.
You can use the following code. a=[1 2 3]; b=length(a); c=(b-1):-1:0 d=10.^c; y=a.*d; It converts an array c...
8 years ago | 5
| accepted
Successive difference in an array
Use command diff example: y=diff(x)
8 years ago | 4
| accepted
Error calculation and using for loop
You can use the following code: cosx=1; x=1.18; for i=1:4 cosx=cosx+(-1)^i.*x^(2*i)/factorial(2*i) end It ...
8 years ago | 4
Write a single line code to sum all the odd numbers of an array.
You can use this code: y = sum(x(rem(x,2)==1));
8 years ago | 9
| accepted
how to draw a line with two points x and y at a given angle???
That is pretty simple. x=[x1 x2]; y=[y1 y2]; plot(x,y)
8 years ago | 4
how to calculate taylor series expansion of sin(k*(x-x1)-4k^3*t) in matlab?
You can use in-built MATLAB function, taylor(f,var) to generate Taylor series. For your case, the code will look like ...
8 years ago | 5
| accepted