First
|
Prev |
Next
|
Last
Pages: 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
Matrix to Column vector Could some please give the code to convert a matrix into a column vector.. as in 'vec' operator functions. eg: A=[1 2; 3 4] vec(A)= [1 2 3 4]' Thanks & Regards ... 18 Jun 2010 05:52
Rice Distribution Hello, please help me with the following problem - given K factor, how to generate a random variable having Rice Distribution in MATLAB? Thanks Sonali ... 18 Jun 2010 16:51
How to calculate return series ? I have done forecasting and calculated SigmaForecast and MeanForecast for 30 days. Now how to get a return series for these 30 days. And how to get new price series from these returns for these 30 days ? I am new to matlab, please help me out. regards Vaibhav ... 18 Jun 2010 02:38
How to calculate return series ? I have done forecasting and calculated SigmaForecast and MeanForecast for 30 days. Now how to get a return series for these 30 days. And how to get new price series from these returns for these 30 days ? I am new to matlab, please help me out. regards Vaibhav ... 18 Jun 2010 02:38
Replacing NaN Values...? I came up with this not-so-elegant solution: The idea is to find the first and last non-nan indexes and then replace the correspoding nans with them. %vector A=[ NaN NaN NaN 3 6 10 30 100 NaN NaN]; %index of the first non-nan ind1=find(~isnan(A),1,'first'); %index of the last non-nan ind2=find(~... 18 Jun 2010 02:37
is bootci with bootfun returning a vector possible? (at least in newer versions of matlab) Hi, I am trying to get confident intervals for a vector of coefficients using BCa. I found that bootci can do this work but only if the function handle returns a scalar. I use least squares to find the coefficients from the eq.: @coeff =(y) pinv(H)*y where H is a matrix and y is a vector that need to be bootstraped. ... 18 Jun 2010 01:32
Error COMException (0x80080005) from ASP.NET 2.0 "Patrick Tai" <ptai(a)risconsulting.com> wrote in message <ef460b6.-1(a)webcrossing.raydaftYaTP>... We have Matlab version 2006a and Windows XP profession operating system. We used ASP.NET Development server to execute a Matlab function using the Interop.MLApp.dll. We use C# as the script language. That worked.... 21 Jun 2010 21:24
Creating MathLAB Executable I have created a Application by using MathLAB GUI. Now I would like to distribute it as an executable. How to create MathLAB Executable? If there is a good document, Please let me know Thank you, Best Regards, Paheerathan ... 18 Jun 2010 12:25
Estimating AR(p)-ARCH(q) Hey folks, I'm trying to estimate an AR(4)-ARCH(3) model by minimizing the negative of the log-likelihood function. But my "optimal" coefficients explode and are wildly huge. I havn't included the constraint on the coefficients to ensure that the model is stationary as I am not sure how to...I think this mig... 17 Jun 2010 23:22
Unable to get "datetick('x','HHPM')" to work.. Dear all, I been trying to learn this example "Plot traffic count data against date ticks for hours of the day showing AM and PM." which is found here.. http://www.mathworks.co.jp/access/helpdesk/help/techdoc/ref/datetick.html but it seems I have problem with this command, datetick('x','HHPM') and it gave me this... 20 Jun 2010 04:49 |