photo

Abhishek Jain


NSIT

Last seen: etwa ein Jahr vor Aktiv seit 2016

Followers: 0   Following: 0

Nachricht

Statistik

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

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


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

fast 6 Jahre vor | 0 Antworten | 0

0

Antworten

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

fast 8 Jahre vor | 0

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

fast 8 Jahre vor | 1

| akzeptiert

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

fast 8 Jahre vor | 2

| akzeptiert

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

fast 8 Jahre vor | 6

| akzeptiert

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

fast 8 Jahre vor | 5

| akzeptiert

Beantwortet
Successive difference in an array
Use command diff example: y=diff(x)

fast 8 Jahre vor | 4

| akzeptiert

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

fast 8 Jahre vor | 4

Beantwortet
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));

fast 8 Jahre vor | 9

| akzeptiert

Beantwortet
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)

etwa 8 Jahre vor | 4

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

etwa 8 Jahre vor | 5

| akzeptiert