Community Profile

photo

gsourop


Last seen: 2 months ago Active since 2016

Followers: 0   Following: 0

Message

Statistics

  • First Review
  • Thankful Level 4

View badges

Feeds

View by

Question


How to calculate minimum variance portfolio with constraints?
Dear everyone, I would like to calculate the weights of a minimum variance portfolio with leverage and short sale constraints. ...

1 year ago | 0 answers | 0

0

answers

Question


How to apply biorthogonal wavelets in time series?
Hi everyone, I would like to employ a bior3.5 on a time series using the matlab dataset DM_USD. I have read the page regardin...

2 years ago | 0 answers | 0

0

answers

Question


How can I solve the orthogonality issue in bior3.5 wavelet?
Dear everyone, I am trying to decompose a time series with the use of Biorthogonal Wavelet Pairs, but I receive an error ''Wa...

3 years ago | 0 answers | 0

0

answers

Question


Generate all possible combinations from 2 vectors
Hi all, I would like to generate a new matrix that will contain all possible combinations from 2 other matrices. For example, ...

3 years ago | 0 answers | 0

0

answers

Question


How to replace a for loop that contains an if statement?
Dear everyone, I have 2 vectors with random numbers A = -5 + (5+5)*rand(10,1); B = -5 + (5+5)*rand(10,1); and based on th...

3 years ago | 2 answers | 0

2

answers

Question


How to fit a PLS function with an intercept?
Dear all, I am using the plsregress function to derive the betas. I want to test a different number of components to see whic...

3 years ago | 0 answers | 0

0

answers

Question


Is it possible to run specific lines from a different script?
Dear everyone, I would like to ask if it possible to code to run specific lines from a script saved in a different directory ...

3 years ago | 2 answers | 0

2

answers

Question


How can I re-arrange a matrix?
Hi everyone, Let's assume that I have a matrix X, dimensions 10x2, a variable z of dimensions 10x1. Then I want to create an in...

4 years ago | 1 answer | 0

1

answer

Question


Can I label all similar colored lines in one figure with subplots?
Hi everyone, I would ilke to label the lines that are getting the data from the same column with a common name, rather than n...

4 years ago | 0 answers | 0

0

answers

Question


How to reshape a matrix into nx2 matrix?
Hi everyone, I would like to reshape matrix A A = magic(6) ans = 35 1 6 26 19 24 3 32 7 ...

4 years ago | 1 answer | 0

1

answer

Question


How to get the least MSE results after cross validation in PLS?
Hi everyone, I am running a PLS regression and try to select the parameters with lowest MSE, after cross validating, in order...

4 years ago | 0 answers | 0

0

answers

Question


I am not getting the correct answer when using datetime function
Hi everyone, I am using the following function datetime(1,43100,1) but instead of getting '31/12/2017' as an answer (as given...

4 years ago | 2 answers | 0

2

answers

Question


How to scale figure when printed in pdf without losing resolution?
Hi everyone, I would like to ask how can I resize a figure (or reduce white space margins around the figure) before printing in...

5 years ago | 1 answer | 0

1

answer

Question


How can I change orientation and resolution in a pdf printed figure?
Hi everyone, I would like to ask how can I change orientation and resolution (at least 300dpi) in the printed pdf file of a fig...

5 years ago | 1 answer | 0

1

answer

Question


How can I create a plot with subplots in a loop?
Hi everyone, I am trying to create a plot with subplots within a loop. The code so far is: x = randn(100,13); D = 1966 dis =...

5 years ago | 1 answer | 0

1

answer

Question


How to reshapre a matrix?
Hi everyone, I would like to reshape a matrix, say A: rng default A = randn(12,4) A = 0.5377 -1.3499 0.6715 0...

5 years ago | 1 answer | 0

1

answer

Question


How to plot dates expressed in the form of number?
Hi everyone, I want to plot dates that are expressed in the following format: % x-axis Time = [730211, 730241, 730302, 730333...

5 years ago | 1 answer | 0

1

answer

Question


How to write cell arrays in Excel?
Hi everyone, I am trying to write a cell array in Excel but I don't get any results. The code I have prepared is below: A = ...

5 years ago | 1 answer | 0

1

answer

Question


Write results in Excel under multiple If statements
Hi there, I would like to ask how can I use multiple if statements. I have written the following code but I only get results ...

5 years ago | 1 answer | 0

1

answer

Question


How to use xlswrite with cell arrays in a loop?
Hi everyone, Suppose that I have the following cell array: AA = cell(10,1); for i = 1 : 10 A = randn(20,1); AA{i,1} = A; ...

5 years ago | 1 answer | 0

1

answer

Question


How to find if a pair is within an unorthogonal area with parallel sides?
Hi everyone, Suppose I have the area within the following x,y pairs, (3,1), (3,5), (12,1), (12,7), (6,5) and (6,7). I would ...

5 years ago | 1 answer | 0

1

answer

Question


How can I determine is (x,y) pair is inside an orthogonal area?
Hi everyone, Suppose we have an orthogonal area where the 4 x,y pairs are (1,5) , (3,5) , (1,7) and (3,7). I would like to test...

5 years ago | 2 answers | 0

2

answers

Question


How can I add constraints in a solution of a function?
Hi everyone, I would like to solve the following function by adding two constraints. S=randn(6,6); y=randn(6,1); ONE = ...

5 years ago | 1 answer | 0

1

answer

Question


How can I strip single quotes from a cell array?
Hi everyone, I am trying to get rid of the single quotes from a cell array elements in order paste results on TEX. In additio...

5 years ago | 1 answer | 0

1

answer

Question


Why do I receive empty outputs in cell arrays after an if statement?
Hi everyone, I am applying an if statement in doubles and allocate outputs in cell arrays, such as stars{1}='*'; stars{...

5 years ago | 2 answers | 0

2

answers

Question


How to use cell2mat for specific elements of cell array?
Hi everyone, I am trying to create a double from specific elements of a cell array. If I have a cell array B, of dimensions 6...

5 years ago | 1 answer | 0

1

answer

Question


How could I randomly split the columns of a matrix into 3 matrices with equal number of columns?
Hi everyone, I would like to ask if there is a way to split a matrix A, with dimensions (100 x 12) into three sub-matrices wi...

5 years ago | 1 answer | 0

1

answer

Question


How to concatenate the rounded digits of a number and a string?
Hi everyone, I am trying to concatenate a rounded number (in the 2nd digit after decimal) and string value, so that: x= ...

5 years ago | 2 answers | 0

2

answers

Question


How to create doubles from cell arrays?
I would like to ask if there is a more efficient code to do the following task: a = cell(10,1); for i = 1 : 10 a...

6 years ago | 1 answer | 0

1

answer

Question


How to calculate the weight of a mean variance portfolio
Hi everyone, I want to create a mean-variance portfolio of 6 risky assets and 1 risk free. The investor has a target portfolio ...

6 years ago | 0 answers | 0

0

answers

Load more