Community Profile

photo

Alexandra


2014년부터 활동

Professional Interests: Risk management, Corporate Finance, M&A

통계

  • First Review
  • Thankful Level 3
  • First Answer

배지 보기

Content Feed

보기 기준

질문


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...

7년 초과 전 | 답변 수: 3 | 0

3

답변

질문


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...

7년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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...

7년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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); ...

7년 초과 전 | 답변 수: 0 | 0

0

답변

답변 있음
How 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) ...

7년 초과 전 | 0

질문


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...

7년 초과 전 | 답변 수: 3 | 0

3

답변

질문


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...

7년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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년 전 | 답변 수: 0 | 0

0

답변

질문


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년 전 | 답변 수: 1 | 0

1

답변

질문


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년 전 | 답변 수: 1 | 0

1

답변

질문


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년 전 | 답변 수: 1 | 0

1

답변

질문


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...

대략 8년 전 | 답변 수: 1 | 0

1

답변

질문


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...

대략 8년 전 | 답변 수: 1 | 0

1

답변

질문


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...

대략 8년 전 | 답변 수: 1 | 0

1

답변

질문


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...

8년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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...

8년 초과 전 | 답변 수: 0 | 0

0

답변

질문


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'...

8년 초과 전 | 답변 수: 1 | 0

1

답변

질문


ksdensity default bandwidth value
Hi, Does any one knows how matlab computes the default bandwidth in the function ksdensity? Thank you very much,

8년 초과 전 | 답변 수: 3 | 0

3

답변

질문


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...

8년 초과 전 | 답변 수: 2 | 0

2

답변

질문


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 ...

8년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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...

8년 초과 전 | 답변 수: 0 | 0

0

답변

질문


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년 전 | 답변 수: 2 | 0

2

답변

질문


Efficient Frontier code error
Hi, I am running the following code I found: % portfolio0_efficient_frontier % Matlab program to plot efficient frontier and...

거의 9년 전 | 답변 수: 1 | 0

1

답변

질문


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년 전 | 답변 수: 0 | 0

0

답변

질문


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년 전 | 답변 수: 1 | 0

1

답변

질문


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...

9년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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 ...

9년 초과 전 | 답변 수: 1 | 0

1

답변

질문


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...

9년 초과 전 | 답변 수: 1 | 0

1

답변