photo

Abhishek Jain


NSIT

Last seen: circa 2 anni fa Attivo dal 2016

Followers: 0   Following: 0

Messaggio

Statistica

All
MATLAB Answers

1 Domanda
10 Risposte

File Exchange

2 File

Cody

9 Problemi
823 Soluzioni

RANK
726
of 300.364

REPUTAZIONE
108

CONTRIBUTI
1 Domanda
10 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.0%

VOTI RICEVUTI
40

RANK
6.929 of 20.934

REPUTAZIONE
152

VALUTAZIONE MEDIA
3.90

CONTRIBUTI
2 File

DOWNLOAD
6

ALL TIME DOWNLOAD
1038

RANK
203
of 168.407

CONTRIBUTI
9 Problemi
823 Soluzioni

PUNTEGGIO
6.895

NUMERO DI BADGE
10

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • 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

Visualizza badge

Feeds

Visto da

Domanda


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

quasi 7 anni fa | 0 risposte | 0

0

risposte

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

circa 9 anni fa | 0

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

circa 9 anni fa | 1

| accettato

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

circa 9 anni fa | 2

| accettato

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

circa 9 anni fa | 6

| accettato

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

circa 9 anni fa | 5

| accettato

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

circa 9 anni fa | 4

| accettato

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

circa 9 anni fa | 4

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

circa 9 anni fa | 9

| accettato

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

circa 9 anni fa | 4

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

circa 9 anni fa | 5

| accettato