Alexandra
Followers: 0 Following: 0
Professional Interests: Risk management, Corporate Finance, M&A
Statistics
RANK
192,409
of 295,467
REPUTATION
0
CONTRIBUTIONS
27 Questions
1 Answer
ANSWER ACCEPTANCE
40.74%
VOTES RECEIVED
0
RANK
of 20,234
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,912
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
uniform distribution between a and b with intervals of 0,005
Hi, I am having trouble using R = unidrnd(N) to create n random numbers between a and b (imagine a=0 and b=0.2) where the nu...
8 years ago | 3 answers | 0
3
answersQuestion
Running the files on a sequence, saving the results, running the files again, saving the results with different name
Hi, I use a .m file with just diary function in it to run several different files sequentially in the same folder. diary lo...
8 years ago | 1 answer | 0
1
answerQuestion
How to run a mat file only after the others have run
Hi, I have 4/5 matlab windows open and I run several independent mat files at the same time. When they finish I have another...
8 years ago | 1 answer | 0
1
answerQuestion
Alternative code that runs much faster?
Hi, We built this code: A = zeros(n,y); A (:,1) = -3; x1 = zeros(n,y); x2 = zeros(n,y); x3 = zeros(n,y); ...
8 years ago | 0 answers | 0
0
answersHow to sum every 29 data and make some condition for them?
I would try something like this: for k=1:(numel(A)-30) B(k) = sum(A(k:k+29)); if B(k) <= 0.5 C(k) ...
8 years ago | 0
Question
Generating random numbers from 0 - 1 with limit on the sum
Hi, I am trying to generate values from 0 to 1 for several variables (x1 x2 x3). These results must assure that x1*a1 + x2...
8 years ago | 3 answers | 0
3
answersQuestion
Model running for days
Hi, I know this is a very open question but the Monte Carlo simulation I built is getting so massive that the model is running f...
8 years ago | 1 answer | 0
1
answerQuestion
Computing IRR of a project after x years depending on price
Hi, I am stuck trying to write a code. I have a project of n years. The cash flow each year depends on the Price. For each y...
8 years ago | 0 answers | 0
0
answersQuestion
Using for and fzero to compute IRR after x years
Hi, here's the code: for a=1:y for k=1:n f = A(k,a)/(1+t(k,a))^(a-1); B(k,a) = B(k,a) ...
8 years ago | 1 answer | 0
1
answerQuestion
3D matrix multiplications
Hi, I have a A(nxa) matrix and a B(1xp) matrix. I'm trying to multiplicate A by B, creating a C(nxaxp) matrix (3D), where t...
8 years ago | 1 answer | 0
1
answerQuestion
generate random numbers subject to
Hi, I am trying to generate a set of random numbers X between 0 and 1 subject that an equation depending on X can be negative....
8 years ago | 1 answer | 0
1
answerQuestion
NaN in database during simulation
I imported a series of returns into the workspace. Because there was a longer series in the same database, matlab imported the r...
9 years ago | 1 answer | 0
1
answerQuestion
finding the maximum value table A for values in table B bellow benchmark
So, here's the situation: I have three tables: A = [50 100 30 4]; B = [100 150 90 50]; C = [50 100 150]; Value in C are b...
9 years ago | 1 answer | 0
1
answerQuestion
Warning: Inverse CDF calculation did not converge for p
Hi, I run a simulation using ksdensity and copulas. In the end I get the following warning: Warning: Inverse CDF calculat...
9 years ago | 1 answer | 0
1
answerQuestion
Out of memory error with 8GB and 64bit
Hi, I am working with lots of memory and I am getting an out of memory error. >> memory Maximum possible array: 1...
9 years ago | 1 answer | 0
1
answerQuestion
random 100k rows of kernel numbers, each row has Poisson number of random numbers
Hi, I am trying to do something and I need help. So, this is for insurance analysis. I have x number of accidents that may...
9 years ago | 0 answers | 0
0
answersQuestion
Error using copula fit: Rho has become rank-deficient
Hi, I wanted to estimate kernel densities for 20 variables, correlated by t copulas. Had this formula: [Rho,nu] = copulafit('t'...
9 years ago | 1 answer | 0
1
answerQuestion
ksdensity default bandwidth value
Hi, Does any one knows how matlab computes the default bandwidth in the function ksdensity? Thank you very much,
9 years ago | 3 answers | 0
3
answersQuestion
Matrix Multiplication column and vector
Hi, I am trying to solve this problem: A is 1 column of 100k results; B is a vector of 10 weights; I need a matrix of 10...
9 years ago | 2 answers | 0
2
answersQuestion
Loop on changing databases
Hi, We run a code where part of it depends on variables we import from excel. We want to run a loop on the code for it to ...
9 years ago | 1 answer | 0
1
answerQuestion
Several automatic Monte Carlo simulations linked to excel models that change its assumptions for each simulation
Hi, I don't even know if this is possible. We are running a Monte Carlo simulation on a model built in Matlab. In the begi...
9 years ago | 0 answers | 0
0
answersQuestion
Can't apply an IF function with 100000*1 matrix
Hi! I built this code: if A1 <0 D = 0.8; elseif A2 <0 D = 0.7; elseif A3 <0 D = 0.6; elseif ...
9 years ago | 2 answers | 0
2
answersQuestion
Efficient Frontier code error
Hi, I am running the following code I found: % portfolio0_efficient_frontier % Matlab program to plot efficient frontier and...
9 years ago | 1 answer | 0
1
answerQuestion
A log returns distribution with median zero
Hi, I have a time series of monthly log returns, to which I subtracted the median, so that they have zero median. I did this ...
9 years ago | 0 answers | 0
0
answersQuestion
random normal (0,1) correlated by copulas
Hi, I created a simulation of random variables correlated by copulas in Matlab, using ksdensity function. Now I am trying...
9 years ago | 1 answer | 0
1
answerQuestion
Simulating dependent normally distributed variables using copulas
I created a model that simulates variables with kernel distributions connected by copula functions. (X and Y are series of ln r...
10 years ago | 1 answer | 0
1
answerQuestion
Probability of being under a target
Hi, I have a result variable X that is defined by an equation of random variables. We used prctile to see the results we ...
10 years ago | 1 answer | 0
1
answerQuestion
Error with mvnrnd function?
Hi! when I run the following code: n = 1000; rho = .7; Z = mvnrnd([0 0], [1 rho; rho 1], n); U = normcdf(Z); X = [gaminv...
10 years ago | 1 answer | 0