photo

Raul Andres Lopez Romero


Last seen: 6年弱 前 2017 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB Answers

0 質問
11 回答

Cody

0 問題
6 解答

ランク
4,218
of 300,904

評判
12

コントリビューション
0 質問
11 回答

回答採用率
0.00%

獲得投票数
1

ランク
 of 21,108

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク
53,577
of 171,602

コントリビューション
0 問題
6 解答

スコア
70

バッジ数
1

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

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

バッジを表示

Feeds

表示方法

回答済み
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) ...

7年以上 前 | 0

回答済み
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...

7年以上 前 | 1

解決済み


Add two numbers
Given a and b, return the sum a+b in c.

8年弱 前

回答済み
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...

8年弱 前 | 0

解決済み


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

8年弱 前

解決済み


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

8年弱 前

解決済み


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

8年弱 前

解決済み


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

8年弱 前

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

8年弱 前

回答済み
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 ...

8年弱 前 | 0

回答済み
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>

8年弱 前 | 0

回答済み
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) ...

8年弱 前 | 0

| 採用済み

回答済み
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...

約8年 前 | 0

回答済み
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 ...

約8年 前 | 0

| 採用済み

回答済み
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...

約8年 前 | 0

回答済み
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...

約8年 前 | 0

回答済み
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) ...

約8年 前 | 0