Risposto
Creating timeseries objects from .xlsx files
Use <http://www.mathworks.com/help/matlab/ref/xlsread.html |xlsread|> to import the data into an array then use the method shown...

oltre 12 anni fa | 2

| accettato

Risposto
What are 'R2' and MSe parameters for and how can I show them ?
Scroll down and take a look at the 'Definitions' and properties section: http://www.mathworks.com/help/stats/linearmodelclass...

oltre 12 anni fa | 0

Risposto
estimate and SE in a linear regression becomes 0
It means exactly what the error message is saying. Your data is rank deficient. As a caution, when you use datasets as the in...

oltre 12 anni fa | 0

| accettato

Risposto
Multiple datasets, lsqcurvefit function?
|LSQCURVEFIT| is well suited for this type of problems: >> y=[1:1:10]'; x=[0.1:0.1:1]'; z=[10:10:100]'; >> yFun = ...

oltre 12 anni fa | 0

| accettato

Risposto
cdf of multivariate normal random numbers
Did you try |mvncdf|? http://www.mathworks.com/help/stats/mvncdf.html

oltre 12 anni fa | 0

Risposto
How do I convert my .m file into a .exe file?
Your options are limited to the following and each have their own limitations: 1) MATLAB Compiler which will let you deploy y...

oltre 12 anni fa | 3

Risposto
Storing a .mat file in mysql database
Since MATLAB supports so many different types of data, you will have to load it into MATLAB first before committing it into a da...

oltre 12 anni fa | 0

Risposto
How do I find the indices of the Self Organizing Map (SOM) training set output
Here is an example that should help you: net = selforgmap([10 10]); [net,tr] = train(net,inputs); % Classify input dat...

oltre 12 anni fa | 0

| accettato

Risposto
Portfolio Optimisation using a mean/ mean absolute deviation model (linear program)
Beq should be a column vector, but in your the above example it seems to be a row vector. Beq = Beq(:); % Forces it to be ...

oltre 12 anni fa | 0

Risposto
How to run EGtest in matlab for cointegration?
Can you share some information about the data? The data set may be numeric but what is the data container? What the the output o...

oltre 12 anni fa | 0

Risposto
Find the goodness fitting and find the best fit
1) The parameter estimates are Maximum Likelihood estimates. All properties of the fit are available in the distribution object,...

oltre 12 anni fa | 0

Risposto
Getting interpolated points from surface
If you already have gridded data on a mesh use these functions from grid based interpolation: http://www.mathworks.com/help/m...

oltre 12 anni fa | 0

Risposto
In parallel processing, are multiple workers used for anything else than parfor loops?
Using SVD under a parfor will likely slow the performance of SVD. SVD is inherently multithreaded and make use of multiply core...

oltre 12 anni fa | 1

| accettato

Risposto
Error using fzero. I don't know where to place the (.) properly. Please help
At a quick glance you are missing a dot '.' after 2.51 x = @(f)(1/sqrt(f) + 0.86*2.303*log(E(a)./3.7 + 2.51./(Re.*sqrt(f)...

oltre 12 anni fa | 0

| accettato

Risposto
Confidence intervals around trend
You can use <http://www.mathworks.com/help/stats/linearmodel.predict.html#outputarg_yci |polyconf|> Alternatively you can fit...

oltre 12 anni fa | 0

Risposto
Robust standard errors on coefficients in a robust linear regression
The output is robust to outliers and are not heteroskedasticity consistent estimates. If that is what you are interested in,...

oltre 12 anni fa | 0

| accettato

Risposto
Linear regression comparable to excel
You can get all those results when you use the LinearModel functionality in the Statistics Toolbox: http://www.mathworks.com/...

oltre 12 anni fa | 0

Risposto
speed up simulation using Parallel Computing Toolbox
That is a hard question to answer without some insight into the type of model you have. Here is a start though: http://www.ma...

oltre 12 anni fa | 0

Risposto
How to plot intermediate variables of a function used by ode45 solver
You can define an output function (outputfcn) that will be called after each iteration. http://www.mathworks.com/help/matlab...

oltre 12 anni fa | 0

Risposto
Is there a way to read images from a folder and save it in powerpoint
Here is a technical support solution that explains how to go about it: http://www.mathworks.com/support/solutions/en/data/1-8...

oltre 12 anni fa | 2

| accettato

Risposto
How can i Burn in MATLAB
You will need to first download the support package for simulink: http://www.mathworks.com/matlabcentral/fileexchange/40313-s...

oltre 12 anni fa | 0

Risposto
Time series in Artificial neural network (ANN) example pollution Mortality
Here is an example I shared sometime earlier. The example predicts 30 steps of a sine wave: http://www.mathworks.com/matlabce...

oltre 12 anni fa | 0

| accettato

Risposto
get matlab nural network parameter after training
Everything you want is usually within the net object. Here is an example: [x,t] = simplefit_dataset; net = fitnet(10) ...

oltre 12 anni fa | 0

Risposto
opengl functions in matlab
To a large degree most of these can be done using handle graphics. Take a look at the documentation below: http://www.mathwor...

oltre 12 anni fa | 0

Risposto
linear regression on excel dataset
mdl = LinearModel.fit(ds) assumes, _ds_ is a dataset (Your second approach) and the last column of _ds_ is the response var...

oltre 12 anni fa | 0

| accettato

Risposto
How to change parameters in exp2 fit???
You can specify a custom model with your requirements instead of using the _exp2_ model = @(z)z(1)*exp(z(2)*x)+Salinity_and...

oltre 12 anni fa | 0

Risposto
function sound() changed behavior on matlab 2013a Mac
The sound function in R2013a now returns immediately without blocking. You can use <http://www.mathworks.com/help/matlab/ref/aud...

oltre 12 anni fa | 1

Risposto
How to solve an error while using the command 'svmtrain'?
This sounds like a path issue. Can you try the following: >> which -all internal.stats.getargs You should see an output ...

oltre 12 anni fa | 1

| accettato

Risposto
How can I use integer constraints in fgoalattain?
Hi Neal, this is currently not supported in the product. As you rightly noted GA is the only function currently that allows yo...

oltre 12 anni fa | 0

| accettato

Risposto
how connect and run my code onto a HP server cluster?
Is the cluster running MDCS? http://www.mathworks.com/products/distriben/ If not then you are out of luck.

oltre 12 anni fa | 0

Carica altro