photo

Hannes Arnar


Reykjavik University

Last seen: 5年弱 前 2015 年からアクティブ

Followers: 0   Following: 0

HR

統計

MATLAB Answers

8 質問
4 回答

ランク
154,097
of 300,753

評判
0

コントリビューション
8 質問
4 回答

回答採用率
25.0%

獲得投票数
0

ランク
 of 21,075

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 170,858

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

スコア
0

バッジ数
0

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

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

平均評価

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

平均いいねの数

  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


For loop for this ?
Vcd{1} = 125 *(1+rr{1}); %Investment in company Vcdd{1} = Vcd{1}.*(1+rr{2}); Vcde{1} = Vcdd{1}.*(1+rr{3}); %% rr are cell ...

5年以上 前 | 1 件の回答 | 0

1

回答

回答済み
for loop for this ? I want to create a for loop for this that runns throw the data and create arrays like this.
I want to let the loop jump throw the data set on some days lets say mabye 25 days , So the dataset is 1200 * 20 . By that I wa...

6年弱 前 | 0

回答済み
for loop for this ? I want to create a for loop for this that runns throw the data and create arrays like this.
I want to let the loop jump throw the data set on some days lets say mabye 25 days , So the dataset is 1200 * 20 . By that I wa...

6年弱 前 | 0

質問


for loop for this ? I want to create a for loop for this that runns throw the data and create arrays like this.
close all; clear all; clc; % Vill her lata hoppa á 50 dögum , skoða þetta B data1 = xlsread('dataCompanyprices','Sheet1'...

6年弱 前 | 2 件の回答 | 0

2

回答

質問


Create covariance matrix : I want to generate 50 covariance matrix for this data set, by letting the date jump on 24 days . I will let the xls file follow with
close all; clear all; clc; data1 = xlsread('dataCompanyprices','Sheet1','W4:AP1203'); data = data1(:,:); counter = 0; ...

6年弱 前 | 0 件の回答 | 0

0

回答

質問


How to create for-loop for this case ?
How would you create a for-loop for this case, I want to make the S and C and R jump on 25 days close all; clear all; clc; ...

6年弱 前 | 1 件の回答 | 0

1

回答

回答済み
How to a create for loop for this ?
the size of it is 1247 x 20

6年弱 前 | 0

回答済み
How to a create for loop for this ?
close all; clear all; clc; data1 = xlsread('dataCompanyprices','Sheet1','W4:AP1250'); S = std(data1)*sqrt(252); %Standard d...

6年弱 前 | 0

質問


How to a create for loop for this ?
data2 = data1(1:25,:); Cc = cov(data2); data3 = data1(26:51,:); Cc1 = cov(data3); data4 = data1(52:77,:); Cc2 = cov(data4);...

6年弱 前 | 3 件の回答 | 0

3

回答

質問


how do I plot this?
The bee passes through an area that is defined by a box that has a side length of 100, the x and y coordinates of the bee never...

約10年 前 | 1 件の回答 | 0

1

回答

質問


how can i plot the line in different colours
close all; clear all; clc; x = -5:0.01:5; y = zeros(1,length(x)); for i = 1:length(x) if(x(i) < -1) ...

10年以上 前 | 2 件の回答 | 0

2

回答

質問


How can i show the multiplication table in the command window without showing the zeros?
close all; clear all; clc; for i=1:10 for j=1:i A(i,j)=i*j; end end disp(A)

10年以上 前 | 1 件の回答 | 0

1

回答