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

más de 12 años hace | 2

| aceptada

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

más de 12 años hace | 0

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

más de 12 años hace | 0

| aceptada

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

más de 12 años hace | 0

| aceptada

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

más de 12 años hace | 0

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

más de 12 años hace | 3

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

más de 12 años hace | 0

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

más de 12 años hace | 0

| aceptada

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

más de 12 años hace | 0

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

más de 12 años hace | 0

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

más de 12 años hace | 0

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

más de 12 años hace | 0

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

más de 12 años hace | 1

| aceptada

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

más de 12 años hace | 0

| aceptada

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

más de 12 años hace | 0

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

más de 12 años hace | 0

| aceptada

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

más de 12 años hace | 0

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

más de 12 años hace | 0

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

más de 12 años hace | 0

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

más de 12 años hace | 2

| aceptada

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

más de 12 años hace | 0

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

más de 12 años hace | 0

| aceptada

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

más de 12 años hace | 0

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

más de 12 años hace | 0

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

más de 12 años hace | 0

| aceptada

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

más de 12 años hace | 0

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

más de 12 años hace | 1

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

más de 12 años hace | 1

| aceptada

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

más de 12 años hace | 0

| aceptada

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

más de 12 años hace | 0

Cargar más