Community Profile

photo

Abhishek Jain


NSIT

Last seen: 8개월 전 2016년부터 활동

Followers: 0   Following: 0

연락

통계

All
  • Triathlon Participant
  • Scavenger Finisher
  • Knowledgeable Level 2
  • First Answer
  • Likeable
  • Quiz Master
  • Personal Best Downloads Level 2
  • 5-Star Galaxy Level 3
  • First Submission
  • Famous
  • Celebrity
  • Scholar

배지 보기

Feeds

보기 기준

질문


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...

5년 초과 전 | 답변 수: 0 | 0

0

답변

답변 있음
Why 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 ...

7년 초과 전 | 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...

7년 초과 전 | 1

| 수락됨

답변 있음
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...

7년 초과 전 | 2

| 수락됨

답변 있음
Static variables in MATLAB
Use keyword persistent to declare static variables persistent x; for more information: read here: <https://in.mathworks....

7년 초과 전 | 6

| 수락됨

답변 있음
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...

7년 초과 전 | 5

| 수락됨

답변 있음
Successive difference in an array
Use command diff example: y=diff(x)

7년 초과 전 | 4

| 수락됨

답변 있음
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 ...

7년 초과 전 | 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));

7년 초과 전 | 9

| 수락됨

답변 있음
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)

7년 초과 전 | 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 ...

7년 초과 전 | 5

| 수락됨