Respondida
Butterworth filter in simulink
It is indeed in the Signal Processing Toolbox as you can see here: http://www.mathworks.com/help/signal/ref/butter.html Yo...

casi 13 años hace | 2

Respondida
Undefined function 'lratiotest' for input arguments of type 'double'
This function is part of the econometrics toolbox, make sure you have the license and have the toolbox installed >> ver ...

casi 13 años hace | 0

| aceptada

Respondida
xPC target: How to configure host and target computers?
Ethernet should work fine. Nothing needs to be installed in the target, but there are few settings you will need to make sure ar...

casi 13 años hace | 0

| aceptada

Respondida
Are there any Matlab functions to use for optimization using particle swarm optimization technique?
Have you tried searching file exchange? Here's a submission : http://www.mathworks.com/matlabcentral/fileexchange/7506-partic...

casi 13 años hace | 0

Respondida
How to change starting direction in Matlab 2012a?
Specify what you would like to do in the startup.m file: http://www.mathworks.com/help/matlab/matlab_env/startup-options.html...

casi 13 años hace | 0

| aceptada

Respondida
Slice plot causes MATLAB crash
This may be an OpenGL issue. To confirm, try the following: Restart MATLAB and before you run anything run: >> opengl so...

casi 13 años hace | 0

| aceptada

Respondida
Any HDL Coder Limitation?
http://www.mathworks.com/help/releases/R2012b/hdlcoder/matlab-algorithm-design.html Not everything in MATLAB is supported. S...

casi 13 años hace | 0

Respondida
How to separate binary values ?
No direct way, but some jugglery: A = (reshape(binary',1,7*4))-'0'

casi 13 años hace | 0

Respondida
How to plot a probability density function on a histogram?
Do you have the statistics toolbox? If you do it is straight forward as this: Plot your regular histogram and then: h...

casi 13 años hace | 1

Respondida
Interpolation with some fix interval
You can do the following using interp1: a = randn(17,1);% a is some vector with length of 17 l = length(a); yi = inte...

casi 13 años hace | 0

| aceptada

Respondida
How do I do parameters Estimation in SimBiology using Optimization toolbox?
Optimization is tricky business. You will have to see why you solver stopped and then relax the tolerances till you find a bette...

casi 13 años hace | 0

Respondida
How can I use simulink to solve the algebraic Riccati equation?
You will always solve the Riccati equation offline to compute your LQR gain matrix. You will then use your gain matrix in the si...

casi 13 años hace | 0

Respondida
can u help me in developing a program using uncertain k-means
http://www.mathworks.com/help/stats/kmeans.html kmeans in the statistics toolbox. Could you give more details or reference...

casi 13 años hace | 0

Respondida
How to reduce order of Matrix exponential?
If you want to reduce the order of your system you can use balred: http://www.mathworks.com/help/control/ref/balred.html

casi 13 años hace | 0

Respondida
What is the default installation path for Matlab on architecture X?
Are you looking for: >> matlabroot http://www.mathworks.com/help/matlab/ref/matlabroot.html

casi 13 años hace | 2

Respondida
How to plot axis and legend?
http://www.mathworks.com/help/matlab/ref/axes_props.html?searchHighlight=xticklabel Look for xticklabel, yticklabel in the ab...

casi 13 años hace | 0

Respondida
Discrete Dynamical System Problem, How to display a value of x that satisfies conditions when inputs to the equation are vectors?
To me it seems like it is bounded for c between (-2,0.2683) Here is the change I made to only print c for bounded solutions: ...

casi 13 años hace | 0

Respondida
Solve a second order differential equation
I really recommend going through our documentation and these things become intuitive. Most standard setup's usually have example...

casi 13 años hace | 2

Respondida
How can I pass additional parameters to a function I defined?
You can use anonymous functions to achieve just that: http://www.mathworks.com/help/optim/ug/passing-extra-parameters.html#br...

casi 13 años hace | 0

Respondida
R2012b - Right Click Toolstrip items -> add to shortcuts - Not on all items
Robert, I am afraid I don't have an answer to 'why'. But I do know if you suggest this to support@mathworks.com they'd b...

casi 13 años hace | 0

| aceptada

Respondida
Problem with nonlinear curve fitting - lsqcurvefit
Hi Alex, this link may help you get started: http://www.mathworks.com/help/matlab/math/example-curve-fitting-via-optimization...

casi 13 años hace | 0

| aceptada

Respondida
save v7 vs v7.3 - compression is in which one?
matal, v7.3 uses hdf5 format, which offers several advantages over older format. It allows for files larger than 2 gb as well as...

casi 13 años hace | 1

Respondida
accuracy of svm model on test data?
Maybe what you are looking for is right here: http://www.mathworks.com/help/bioinfo/ug/support-vector-machines-svm.html#bs3tb...

casi 13 años hace | 0

Respondida
linear regession with 3 Independent variables
Issac, the simplest way is to use \ as Wayne mentioned: >> [ones(length(x),1) x]\y This will give you the three coeff...

casi 13 años hace | 0

Respondida
Principle Component Analysis - Problem in Example
Hi Rory, What version of MATLAB are you using? PCA (with supported for wighted and missing values) was introduced only in R201...

casi 13 años hace | 0

| aceptada

Respondida
Generating A Multivariate Nonlinear Regression Equation
Ross, that is still multiple linear regression, although your model may be quadratic (square terms). Also in your individual ...

casi 13 años hace | 0

Respondida
Memory limitations for categorical variables in generalized linear model?
Categorical predictor variable are converted to dummy variables internally. Size depends on number of categorical variables and...

casi 13 años hace | 0

Respondida
sum of coefficients less than 1
Do you have the optimization toolbox? LSQNONNEG cannot handle constraints. Also, please format your code when you post. It ...

casi 13 años hace | 1

| aceptada

Respondida
Faster way to calculate pairwise distance?
pdist http://www.mathworks.com/help/stats/pdist.html But part of the statistics toolbox. Alternatively you could gene...

casi 13 años hace | 0

Respondida
help with nonlinear regression
Your data does not represent a function at all (there are multiple values of y for an x) Are you interested in distribution f...

casi 13 años hace | 0

| aceptada

Cargar más