Risposto
Logistic regression in simbiology
You can perform logistic regression using the Statistics Toolbox using Generalized Linear Model with a logistic link function. ...

quasi 13 anni fa | 0

| accettato

Risposto
What does it mean by NaN??
It means not a number, and there could be various reasons you may have got that. >> 0/0 >> Inf-Inf etc. The following...

quasi 13 anni fa | 2

Risposto
How to get the information from the fitting result?
f.a f.b confint(f)

quasi 13 anni fa | 0

| accettato

Risposto
Financial toolbox/Credit risk utilities/Transprob function/SnapsperYear
The Algorithm section in the transprob doc page tells you about how they go about calculating it: http://www.mathworks.com/he...

quasi 13 anni fa | 0

| accettato

Risposto
pole placement in M-file
shahad, <http://www.mathworks.com/help/control/ref/place.html |place|> is used to perform pole placement using state feedback. T...

quasi 13 anni fa | 1

Risposto
How to create own blocks for using matlab codes
If you are looking at integrating MATLAB algorithm into a simulink model: http://www.mathworks.com/help/simulink/matlab-algor...

quasi 13 anni fa | 0

Risposto
how to create a "please wait..." massage in GUI?
You can use the waitbar instead: http://www.mathworks.com/help/matlab/ref/waitbar.html So the user will know that its doin...

quasi 13 anni fa | 1

| accettato

Risposto
Problem using simscape model provided in Matlab File exchange
Hi Arvind, Check the support compilers and install them: http://www.mathworks.com/support/compilers/R2013a/index.html If y...

quasi 13 anni fa | 1

| accettato

Risposto
How to enter parameters for fmincon when SQP function includes a huge matrix?
Maarten, this is very well explained in the documentation of <http://www.mathworks.com/help/optim/ug/fmincon.html fmincon> and <...

quasi 13 anni fa | 0

Risposto
From RESIDUALs to STANDARDIZED RESIDUALs
There is the definition: http://www.mathworks.com/help/stats/linear-regression-output-and-diagnostic-statistics.html#btkvxq6-...

quasi 13 anni fa | 0

Risposto
How do I run parallel bloomberg blp timeseries?
There is no way for me to test this out since I don't have blp connection, but if you have the parallel computing toolbox, try d...

quasi 13 anni fa | 0

Risposto
What decision tree learning algorithm does MATLAB use to create decision trees?
I think you will find your answer in the documentation: http://www.mathworks.com/help/stats/classification-trees-and-regressi...

quasi 13 anni fa | 1

Risposto
How to get the classification rules of an ensemble?
Here is an example: load fisheriris ens = fitensemble(meas,species,'AdaBoostM2',100,'Tree'); You can find all the t...

quasi 13 anni fa | 0

| accettato

Risposto
train and test data using KNN classifier
Have you tried out the examples in the documentation? http://www.mathworks.com/help/stats/classification-using-nearest-neighb...

quasi 13 anni fa | 0

| accettato

Risposto
Which classification is best
Your mileage will vary based on the SVM options and the data itself. Exact results may not always mean accurate since you don't...

quasi 13 anni fa | 0

| accettato

Risposto
Minimize mean, but also set a constraint on the standard deviation
Set it up as a non linear constraint: http://www.mathworks.com/help/optim/ug/fmincon.html#brv28hl-1

quasi 13 anni fa | 1

| accettato

Risposto
How to define constraints that result integer numbers in Linear programming?
Mixed Integer constraints is currently not possible with linprog. If you have the global optimization toolbox, you can use GA t...

quasi 13 anni fa | 0

| accettato

Risposto
Plot a 4th dimension as color
When using <http://www.mathworks.com/help/matlab/ref/surf.html |surf|> to plot the meshgrid, specify the C to be the color or th...

quasi 13 anni fa | 0

Risposto
Matlab crashes when plotting!
Lets try to narrow down the issue. Does this crash without the plot: clear all N=1000000; x=linspace(1,100,N); ...

quasi 13 anni fa | 0

Risposto
How can I see/show the influence of different parameters on my data?
Fit a linear model? http://www.mathworks.com/help/stats/linearmodel.fit.html If you were looking for something else, could...

quasi 13 anni fa | 0

Risposto
Saveas: missing half the figure!?
Try using export_fig, this is a very popular file central submission that makes exporting figures easy and trouble free: http...

quasi 13 anni fa | 0

Risposto
MATLAB engine and C++
From the documentation: _You must use an installed version of MATLAB; you cannot run the MATLAB engine on a machine that only...

quasi 13 anni fa | 3

| accettato

Risposto
Pert, Beta, Lognormal & Gamma random number generators in Simulink
I know Simulink can generate normal and uniform random numbers but I can't comment on the others. However, MATLAB has support...

quasi 13 anni fa | 0

Risposto
How can I us the mvncdf function for more than 25 dimensions?
This is forced limit. You can change it by editing the mvncdf.m file but is not recommended. Please note that this is not sup...

quasi 13 anni fa | 0

| accettato

Risposto
Fourier Series in MATLAB
I can point you in a very broad direction since you haven't defined what you want help with. What you are looking for can be ...

quasi 13 anni fa | 0

Risposto
How to use matlab to solve differential equations with variables?
Check out the ODE page. http://www.mathworks.com/help/matlab/ref/ode45.html For higher order ode: http://www.mathworks....

quasi 13 anni fa | 0

Risposto
Can Matlab2013a use "Kinect for Xbox 360" sensor?
MATLAB lets you connect to Kinect for windows: http://www.microsoft.com/en-us/kinectforwindows/ not Xbox kinect sensor. Th...

quasi 13 anni fa | 0

| accettato

Risposto
Is the Distributed Computing toolkit included in the Parallel Computing module ?
If you are referring to Distributed Computing Server, this is a separate product: http://www.mathworks.com/products/distriben...

quasi 13 anni fa | 0

Risposto
Standard deviation of aggregate data
Group stats can be used to compute statistics based on some grouping. In this case day is the grouping variable and mean and sta...

quasi 13 anni fa | 0

Risposto
What is the difference between the regress function and the lscov function?
This is well explained in the documentation. REGRESS and LSCOV use \ or mldivide to solve a least squares problem. http://...

quasi 13 anni fa | 0

Carica altro