Answered
Expression of ANN Model
Neural Network is a non parametric modelling techniques therefor you won't have a nice simple looking expression but you can vie...

12 years ago | 0

| accepted

Answered
How to generate a Bernoulli distributed binary data
You probably have an older version of MATLAB installed. Try the following instead: http://www.mathworks.com/help/stats/bin...

12 years ago | 1

Answered
Cannot get the same result in GA as I get in linprog
GA solver is stochastic in nature, there should be no reason to expect the same results as that of linprog. Infact you may not e...

12 years ago | 0

| accepted

Answered
fmincon optimization issue: maximize x by changing only some of the input variables
What you are trying to do is easily achieved by using anonymous function and well explained in this documentation page: http:...

12 years ago | 2

| accepted

Answered
Generate a random number from the mean and standard deviation of a lognormal distribution
You need to compute the mean and sigma of the log normal distribution: m=31.59299751; s=69.72271594; mu = log(m^...

12 years ago | 0

| accepted

Answered
Excel Solver Equivalent in Matlab?
Are you interested in a linear programming optimization problem? Take a look at linprog: http://www.mathworks.com/help/opt...

12 years ago | 0

| accepted

Answered
More efficient dot product function.
BSXFUN is the most efficient way to do element wise dot operations: http://www.mathworks.com/help/matlab/ref/bsxfun.html

12 years ago | 0

Answered
Command to launch Lookup Table Editor (Simulink)
If you are referring to the variable editor, you can use the openvar function: http://www.mathworks.com/help/matlab/ref/openv...

12 years ago | 0

Answered
Computing an integral inside a function
Integral is for numerical integration. What are you expecting the result in? Once you compute the symbolic integral use subs ...

12 years ago | 0

Answered
Estimating state space model using Kalman filter
If you have the control systems toolbox then you can use this: http://www.mathworks.com/help/control/ref/kalman.html

12 years ago | 0

Answered
Monte carlo simulation code
Can you be more specific on the type of problem you are trying to solve? If you are interested in bootstraping then you can st...

12 years ago | 0

Answered
Naming Variable from input arguments
Try using {somexyz} instead of somexyz so that it is a cell.

12 years ago | 0

Answered
using clear all and getting as result false back?
Wrap the whole code in a function and remove clear all. What is the result now? function testfunction() res1=func(x,y);...

12 years ago | 0

Answered
standard deviation of two elements of a 3d matrix
A = rand(672,32,2800); % Some random data: B = std(A,[],2); % Compute the standard deviation B = squeeze(B); % Squee...

12 years ago | 0

| accepted

Answered
How can I find transfer function from a difference equation?
This is not a MATLAB question. Here is some theory: https://ccrma.stanford.edu/~jos/filters/Z_Transform_Difference_Equat...

12 years ago | 0

| accepted

Answered
Function missing from toolbox
This function was introduced in R2013a: http://www.mathworks.com/help/images/release-notes.html?searchHighlight=imsharpen

12 years ago | 1

| accepted

Answered
How to work trained Neural network?
Save the trained network in a MAT file. When you re-open matlab, load the trained network from the MAT file and use it. http...

12 years ago | 0

| accepted

Answered
How to save uint8 workspace data
Looks like your data is a cell array. Convert them matrix using <http://www.mathworks.com/help/matlab/ref/cell2mat.html cell2...

12 years ago | 0

Answered
Generating random numbers from normal distribution
I'd like to clarify could of things. "random numbers generated from normal distribution in matlab actually come from standard...

12 years ago | 1

Answered
Can I import a Pre trained neural network into NN predictive control toolbox?
You can generate a simulink block using the following function: http://www.mathworks.com/help/nnet/ref/gensim.html Here is...

12 years ago | 0

Answered
What is the difference between f-test and t-test?
t-test is used to test if two sample have the same mean. The assumptions are that they are samples from normal distribution. ...

12 years ago | 0

| accepted

Answered
I want a library from a group of .m files for using in matlab
Maybe this is useful? http://www.mathworks.com/help/compiler/c-shared-library-target.html

12 years ago | 0

Answered
Plotting a confidence interval
plot(x,y1,'b',x,c1,'r:',x,c2,'r:') You will find all the information you need about formatting in the doc right here: ...

12 years ago | 0

Answered
Java 1.6.0_51 breaks MATLAB 2012b and below
*This issue has been fixed.* The was an issue in the Java security updates that Apple released for Mac OS X (as mentioned ab...

12 years ago | 13

| accepted

Answered
Why does running my mex function cause matlab to shutdown?
Are you sure it isn't crashing but exiting gracefully? Here is where you can check if there is a crash dump: http://www.ma...

12 years ago | 0

Answered
simulink random sequence generation
Random numbers in all software are pseudorandom sequence of numbers. As Kaustubha already mentioned you will have to seed your r...

12 years ago | 0

Answered
Lapack and Blas on Matlab student version
Hi Jeena, MATLAB is identical regardless of the type of license (student or professional). Only the type and number of toolboxes...

12 years ago | 0

Answered
Java 1.6.0_51 breaks MATLAB 2012b on Mac OS X 10.6.8
MathWorks is aware of this issue and is looking into it. Here are two other posts that are related. http://www.mathworks.co...

12 years ago | 0

| accepted

Answered
I need to find local minima's in a graph(2-dimensional ) without curve fitting ; I have the F(x) and x values only
http://www.mathworks.com/help/matlab/ref/fminsearch.html

12 years ago | 0

Answered
Java 1.6.0_51 breaks MATLAB 2012b and below
Here is the support roadmap: http://www.mathworks.com/support/sysreq/roadmap.html On Mountain Lion (OS X 10.8) MATLAB R201...

12 years ago | 0

Load more