Réponse apportée
How do I even open the Instrument Control Toolbox?
Run the following on the MATLAB command line >> tmtool OR Depending on the version of MATLAB you are using you will...

environ 13 ans il y a | 3

Réponse apportée
using excel spread sheet in matlab and then applying bayesian classsifier
Here is how you can pull in data from excel spread sheet: http://www.mathworks.com/help/matlab/import_export/select-spreadshe...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
when i use the legend command , it works except the colors of the lines,they're the same color ?
If your lines are of the same color then the legend will show the same color. If you plot using different colors, then legend wi...

environ 13 ans il y a | 0

Réponse apportée
mvnrnd bug when run in parfor?
This is expected behavior since the random numbers have been seeded to the same initial conditions at the start of each workers....

environ 13 ans il y a | 0

Réponse apportée
Display precision in Matlab
FORMAT: http://www.mathworks.com/help/matlab/ref/format.html format shortg format longg

environ 13 ans il y a | 0

Réponse apportée
Automatically update plots in GUI
You can define a callback for edit uicontrol: http://www.mathworks.com/help/matlab/ref/uicontrol.html and have the gui upd...

environ 13 ans il y a | 0

Réponse apportée
how to convert a .txt file into a .xls file in matlab?
That means its a cell in a structure. You can access data from structures: http://www.mathworks.com/help/matlab/matlab_pro...

environ 13 ans il y a | 0

Réponse apportée
Matrix operations with Parallel Computing Toolbox
Most math operations are inherently multithreaded. There is a list you will find on our external page: http://www.mathworks....

environ 13 ans il y a | 0

| A accepté

Réponse apportée
How to calculate confidence interval of parameter estimated by global optimization--pattern search
There are no analytic approximations for CIs for pattern search similar to linear regression. The best alternative as you note i...

environ 13 ans il y a | 0

Réponse apportée
Easy question for an economist
You can certainly fit a linear model in a loop for different response values in Y for the same predictors. But I am guessing the...

environ 13 ans il y a | 0

Réponse apportée
Line of code instead of "ans"
Nothing I am aware of but you can terminate the code with a semicolon and then use the diary command to capture the commands. ...

environ 13 ans il y a | 0

Réponse apportée
How to modify the property of the object output by fitensemble?
If you are using fitensemble to create a RegressionEnsemble or ClassificationEnsemble you can use the 'compact' function to remo...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
Can Fmincon recover from an error in evaluating the cost function?
Alan will correct me if I am wrong, but fmincon is derivative based and not particularly good friends with non-smooth problems, ...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
Problem with matlabpool - Error in matlabpool (line 127)
Navigate to Parallel on the toolstrip > Manage Cluster Profiles Confirm that you see 'local' and any other profiles you may h...

environ 13 ans il y a | 0

Réponse apportée
how can i compute PCA for a huge data set?
This is a limitation of you RAM (8 GB) and the amount of data you can hold on your workspace. Clear out your memory and try agai...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
Delaunay Triangulation Spatial Search
delaunayTriangulation was introduced in the recent release. Here is the release notes: http://www.mathworks.com/help/matlab/r...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
Adaptive vs Non Adaptive Filters
I think wiki sums it pretty well: http://en.wikipedia.org/wiki/Adaptive_filter

environ 13 ans il y a | 0

| A accepté

Réponse apportée
How can I change symbolic displays to decimal displays?
>> format Resets MATLAB display format to default.

environ 13 ans il y a | 4

Réponse apportée
how to design a LQR controller for the system that i have mentioned below with its step info
Using the <http://www.mathworks.com/help/control/ref/lqr.html LQR> command? There are examples on that page. Otherwise can you ...

environ 13 ans il y a | 0

Réponse apportée
Financial Instruments Toolbox Tutorial - Error on Intenvset?
You may not have the Financial Toolbox installed. Confirm by typing VER: >> ver and check if you can see it in the list....

environ 13 ans il y a | 0

| A accepté

Réponse apportée
Viewing a cross validated classification tree in the "Classification Tree Viewer"
Katie, when you crossvalidate, the output is a <http://www.mathworks.com/help/stats/classificationpartitionedmodelclass.html Cla...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
problem with typecast command
<http://www.mathworks.com/help/matlab/ref/typecast.html typecast> only takes scalars or vectors. If you have a matrix you can co...

environ 13 ans il y a | 0

Réponse apportée
using kmeans function in parallel
Hi Jordi, when the 'useparallel' flag set to true, KMEANS only computes the replicates in parallel. If you have your replica...

environ 13 ans il y a | 1

| A accepté

Réponse apportée
How can I perform multivariable polynomial curve fitting?
You can use the curve fitting toolbox (cftool) or the statistics toolbox (regress, LinearModel.fit, NonLinearModel.fit) to perfo...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
fmincon invalid starting point
This is mentioned in the doc: Components of x0 that violate the bounds are reset to the interior of the box defined by the bo...

environ 13 ans il y a | 0

| A accepté

Réponse apportée
Does the Optimization Toolbox solve the problems wothout assigning values for the parameters?
If you want a symbolic answer you must use the symbolic toolbox. Optimization Toolbox is for numerical solutions only. >> [...

environ 13 ans il y a | 0

Réponse apportée
How can I create a loop for transpose row vector to column vector
>> newdata = reshape(data,55488,1) http://www.mathworks.com/help/matlab/ref/reshape.html

environ 13 ans il y a | 0

Réponse apportée
Conditional Optimization problem: inf and NaN
Don't let your objective function return nans and infs. Put a condition in the objective function to check for nans and infs <...

environ 13 ans il y a | 0

Réponse apportée
Programatically determine Matlabpool Maximum Number of Local Workers
>> myCluster = parcluster('local'); >> myCluster.NumWorkers For ver > R2012a, for earlier you may have to use findresour...

environ 13 ans il y a | 2

| A accepté

Réponse apportée
Is there any way to disable code generation in Simulink
Have you tried using this?: http://www.mathworks.com/help/simulink/slref/interpretedmatlabfunction.html

environ 13 ans il y a | 0

Charger plus