Community Profile

photo

ektor


Last seen: 6 maanden ago Active since 2012

Statistics

  • Thankful Level 4

View badges

Content Feed

View by

Question


create an increasing series
Hi all, I want to create 5 5(1+0.2^2)= 5(1+0.2^2+0.2^4)= 5(1+0.2^2+0.2^4+0.2^6)= 5(1+0.2^2+0.2^4+0.2^6+0.2^8)= and ...

6 maanden ago | 1 answer | 0

1

answer

Question


Going back in time 1 week or a year
Dear all, I attach a data set of weekly observations on an index. Suppose that I am in week 2023/6/16 (yellow cell). For...

8 maanden ago | 2 answers | 0

2

answers

Question


combining two histograms by category
Dear all, I attach a matlab code that constructs two histograms by category (two categories in total) I am trying to merge ...

8 maanden ago | 1 answer | 0

1

answer

Question


calculating the difference in dates
Dear all, I attach an excel that contains years and months. For example the first row reads 2025 7. Today we have 2023 7 I ...

8 maanden ago | 2 answers | 0

2

answers

Question


constructing a table from a particular data set
Dear all, I have the attach data set and the goal is to construct a table also attached but I do not know if matlab can do su...

8 maanden ago | 2 answers | 0

2

answers

Question


loading multiple xlsx files using for loop and readmatrix
Dear all, I have a number of excel files with the names: model_1.xlsx model_2.xlsx model_3.xlsx . . . model_100.xl...

meer dan een jaar ago | 1 answer | 0

1

answer

Question


Is there anything faster than the below specified Matlab structure?
Dear all, This is what I have as a matlab structure: I first specify the following general function function [KK1, KK2]= f...

meer dan een jaar ago | 1 answer | 0

1

answer

Question


slice sampler with constraints
Dear all, I have a function logPDF=@(x) logpost_1(x, y, lam0, gam0); x1 = slicesample(gam,kk,'logPDF',logPDF); where ...

bijna 4 jaar ago | 0 answers | 0

0

answers

Question


How can I impose restrictions on a function @
Dear all I have a compicated function logPDF=@(x) set_up(x, a,y); under the restriction x+a<0.999. How can I impose th...

bijna 4 jaar ago | 0 answers | 0

0

answers

Question


Using the function in 'logmvnpdfFS'
Dear all, I have been trying to run a matlab code using the function 'logmvnpdfFS' . But I get Undefined function 'logmvnpdf...

bijna 4 jaar ago | 1 answer | 0

1

answer

Question


eye and speye in Kron within matlab
Dear all, I want to ask if B=[1 2; 3 4]; A=kron(eye(2),B); and B=[1 2; 3 4]; A=kron(speye(2),B); are the same. It ...

bijna 4 jaar ago | 0 answers | 0

0

answers

Question


using a loop within a loop in matlab
Dear all, I have this problem T=1000 for ii=1:T for t=ii:T 'here a have a function that depends on t' end e...

bijna 4 jaar ago | 0 answers | 0

0

answers

Question


Adding elements of a vector in matlab
Hi all, I have a vector a=[1 2 3 4 5 6 7 8 9 10 ]; and I want to get the vector b=[1 +2+3+4+5+6+7 +8 +9 +10; 2+3+4+5+6+7...

bijna 4 jaar ago | 1 answer | 0

1

answer

Question


constructing a difficult large matrix
Dear all, I am interested in constructing a complicated matrix A. The matrix A is a diagonal matrix, where each diagonal elem...

bijna 4 jaar ago | 2 answers | 0

2

answers

Question


Matrix with strings and numbers
Dear all, I have a column that contains thousands of the following elements (this is just a sample) A=[ '2008-12-05 15:...

bijna 4 jaar ago | 2 answers | 0

2

answers

Question


identifying the critical points of a bivariate function
Dear all, I have this function below and I plotted it in a 3D space. Is it possible to mark the critical points on the gr...

ongeveer 4 jaar ago | 0 answers | 0

0

answers

Question


plot 2 3D vectors in Matlab
Dear all, I have these vectors a = [1 2 -3]; b = [-3 12 -13]; Both start from c=[0 0 0]; How can I plot them in a 3D e...

ongeveer 4 jaar ago | 1 answer | 0

1

answer

Question


getting an error message when using hmcSampler
Dear all, I have this log-function on which I apply the hmcSampler: T=1000; g=randn(T,1); u=randn(T,1); k1=0.01; k2=0.02; ...

bijna 5 jaar ago | 0 answers | 0

0

answers

Question


Setting up properly the fminunc function
Dear all, I am trying to maximize this function T=1000; z=randn(T,1); u=randn(T,1); k1=0.01; k2=0.01; options=optimset('...

bijna 5 jaar ago | 1 answer | 0

1

answer

Question


Estimating a regression model using matlab
Dear all, I have this regression model g=randn(1000,1); error=randn(1000,1); g(2:end)=k1+ k2*(g(1:end-1)-k1) + error(2:end...

bijna 5 jaar ago | 1 answer | 0

1

answer

Question


An error message using fmincon
Dear all, I minimize this function. g=randn(1000,1); u=randn(1000,1); ff = @(x) sum( ( g(2:end)- x(1)- x(2)*(g(1:e...

bijna 5 jaar ago | 1 answer | 0

1

answer

Question


Optimizing minimization with fmincon function
Dear all, I have this function which I minimize: g=randn(1000,1); u=randn(1000,1); y=randn(1000,1); options = optimoptions(...

bijna 5 jaar ago | 1 answer | 0

1

answer

Question


Estimating multiple parameters from a regression
Dear all, I have this regression model fy=randn(1000,1); x1=randn(1000,1); x2=randn(1000,1); u=randn(1000,1); fy=a*x1+b*x...

bijna 5 jaar ago | 1 answer | 0

1

answer

Question


estimating the parameter of an equation
Dear all, I have this equation: kk=randn(1000,1); u=randn(999,1); kk(2:end)=kk(1:end-1)+u*d; and I want to estimate the ...

bijna 5 jaar ago | 1 answer | 0

1

answer

Question


a question on for loop statement
Dear all, I have this for loop T=1000; k=0.1; u=rand(T,1); a = zeros(T,1); a(1) =u(1)+ k*0.01; for t=2:T a(t) = u...

bijna 5 jaar ago | 1 answer | 0

1

answer

Question


How do I set up a particular function
Dear all, I have a function f=@(x) umax(x,u, t); The problem is that x changes at each value of t=1,...,T; that is, LL...

bijna 5 jaar ago | 0 answers | 0

0

answers

Question


generating a sequence of numbers
Dear all, I want to generate the following sequence: L1=P L2=a1+2*F*P L3=a2+2*F*a1+3*F^2*P L4=a3+2*F*a2+3*F^2*a1+4*F^3*...

bijna 5 jaar ago | 1 answer | 0

1

answer

Question


Using the global operator
I have a function below. As you can see if t==1 I create a vector kk. However, I can not use this kk in the 'else' statement...

bijna 5 jaar ago | 1 answer | 0

1

answer

Question


Using the operator @ and the function
Dear all, I have a function function ll=sample(x,a,b,c,d) end , where x appears in 1000 equations in various positio...

bijna 5 jaar ago | 0 answers | 0

0

answers

Question


constructing a time variable in matlab
Dear all, I have a matrix data= [9 30 0 9 30 0 9 30 0 9 30 0 9 30 ...

ongeveer 5 jaar ago | 1 answer | 0

1

answer

Load more