photo

Raul Andres Lopez Romero


Last seen: oltre 5 anni fa Attivo dal 2017

Followers: 0   Following: 0

Messaggio

Statistica

All
MATLAB Answers

0 Domande
11 Risposte

Cody

0 Problemi
6 Soluzioni

RANK
4.286
of 300.369

REPUTAZIONE
12

CONTRIBUTI
0 Domande
11 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
1

RANK
 of 20.936

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
51.558
of 168.436

CONTRIBUTI
0 Problemi
6 Soluzioni

PUNTEGGIO
70

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • First Review
  • Revival Level 2
  • Solver
  • Knowledgeable Level 1
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
How to get standard errors from estimated arima?
For infer the residuals you need to use the 'infer' function over your ARIMA model try this: residuals=infer(EstMdl,data) ...

oltre 7 anni fa | 0

Risposto
How to check number of zeros in an array?
Try this: nzeros=numel(A)-nnz(A) *numel(X)* give you the number of elements in an array, *nnz(X)* give you the numbers...

oltre 7 anni fa | 1

Risposto
kpss test command results
you need others values for that, you need the p_Value and the c_Value to determinate if that series are stationay, check this...

oltre 7 anni fa | 0

Risposto
Undefined function or variable
Mira, if you try to make this function that way it does not work, all because the parameters yo use in this function at the end ...

oltre 7 anni fa | 0

Risposto
I have been provided with some data files and my task is to read the data in the matlab and plot a graph. How do I do it?
Check the documentation: <https://la.mathworks.com/help/matlab/ref/plot.html Plot 2d>

oltre 7 anni fa | 0

Risposto
How do I show red markers for only the whole numbers in this plot?
Only need to plot an auxiliar function with the numbers you want to plot in red markers example, (the whole numbers in x axis) ...

oltre 7 anni fa | 0

| accettato

Risposto
apply function to all elements in a column
You dont need do a loop for this only use the dot operator ./ .* this multiplies or divide the vector i element by element, this...

quasi 8 anni fa | 0

Risposto
Making a three column matrix
Your code has only one error when you set the C matrix in 300 rows and 3 columns, and try to fill it with numbers starts in 140 ...

quasi 8 anni fa | 0

| accettato

Risposto
How can I plot multiple graphs from one set of table data, separated by NaN?
% Star with position and values % A it's your matrix that contains the NaN elements pos=[true,isnan(A(:,1)).',true]; i...

quasi 8 anni fa | 0

Risposto
How can I plot multiple graphs from one set of table data, separated by NaN?
I think checking your update, you want something like this <</matlabcentral/answers/uploaded_files/98448/final.png>> the c...

quasi 8 anni fa | 0

Risposto
How can I plot multiple graphs from one set of table data, separated by NaN?
You can do this, first we need to do a logical index for the NaN values, M= ... %(your data values); M1=M(1:end,1) ...

quasi 8 anni fa | 0