MK96
2016 年からアクティブ
Followers: 0 Following: 0
統計
MATLAB Answers
12 質問
0 回答
ランク
of 153,912
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
Is there any way to change an array output to display a word or phrase?
I am simulating a random 4x1 array of 1s and -1s;
7年以上 前 | 1 件の回答 | 0
1
回答質問
Replace certain elements in an array
The following code generates a 100x1 array of random 1s and -1s: N = 100; States = 2*randi(2,N,1) - 3; Once generated...
8年弱 前 | 1 件の回答 | 0
1
回答質問
Plot graphs at conclusion of a 'for loop'
I am currently producing the following 2 graphs inside a for loop: % LogPriceReturn Graph figure(1); % opens a...
8年弱 前 | 1 件の回答 | 0
1
回答質問
Plotting more than one graph
I am attempting to produce 2 graphs (see below) however after running the code only one graph (Stock Price) is being displayed. ...
8年弱 前 | 1 件の回答 | 0
1
回答質問
Help with matrix code
I am attempting to create the adjacency matrix of a star tree: https://en.wikipedia.org/wiki/Star_(graph_theory) I have the f...
8年弱 前 | 1 件の回答 | 0
1
回答質問
Help with line graph plot
x = Timestep; y = LogPriceReturn; plot(x,y, '.'); hold on title('Log Price Return'); xlabel('Timestep'...
8年弱 前 | 1 件の回答 | 0
1
回答質問
How to repeat a for loop n times
end States Basically it outputs an array of size (N,1) consisting of 1s and -1s. How can I repeat this array for exampl...
8年弱 前 | 3 件の回答 | 1
3
回答質問
Generating a random symmetric matrix
I am trying to generate a random symmetric matrix consisting of 1s and 0s (adjacency matrix) I have the following; A = r...
約8年 前 | 1 件の回答 | 0
1
回答質問
Need advice on my code for probability simulation
I am attempting to simulate this model below and output a transition matrix at the end. I am having trouble with the last...
約8年 前 | 1 件の回答 | 0
1
回答質問
Simulation of Weighted Coin Toss
Attempting to simulate 4 coin tosses for a weighted coin, e.g. probability of heads = 0.9772 and tails = 0.0228 I want to lis...
約8年 前 | 1 件の回答 | 0
1
回答質問
Normal Distribution Probability Finder
Trying to use normal distribution with mean = 0 and variance = 1 to find the prob(X>-2.125) How would I go about doing this?...
約8年 前 | 2 件の回答 | 1
2
回答質問
I need to generate a number randomly which is either -1 or 1
Trying to generate either -1 or 1 randomly. I have looked at; R = unifrnd(-1,1) however this generates a random numbe...
約8年 前 | 1 件の回答 | 0