Respondida
How can I generate probabilities from a logistic regression?
If you have the Statistics Toolbox, you can fit a logistic regression with |mnrfit| function and then estimate probabilities usi...

más de 10 años hace | 0

Respondida
how to simulate a markov chain?
From what I gather from you description, this question has already been answered: <http://www.mathworks.com/matlabcentral/ans...

más de 10 años hace | 0

Respondida
How to Mask the Area other than sky?
One potential method for masking the building in your image is to detect the building edges via the |edge| function. Once you ha...

más de 10 años hace | 0

Respondida
Is there a matlab function that calculates joint probability for more than 2 random variables ("histc" for more than 3 rvs)?
If you are dealing with discrete random variables, you really only need to use the |accumarray| function. Here is an example...

más de 10 años hace | 1

| aceptada

Respondida
Plotting time-course of matrix entries
Extra credit time! Depending on how you want to ultimately display your results, you have quite a few options. For a quick and d...

más de 10 años hace | 0

| aceptada

Respondida
Normalized distribution for histogram
If you have the Statistics Toolbox, you might find the |dfittool| distribution fitting tool quite useful. doc dfittool I...

más de 10 años hace | 1

| aceptada

Respondida
How can i get the surface plot of 3 variables
You could use the |plot3| command to visualize the data that you have as a single line in 3d space. To use the |surf| or |mes...

más de 10 años hace | 0

Respondida
How to plot the frequency spectrum in simulink
By default, the "Power Spectral Density" (PSD) block is set to have a sample time of Ts = 0.1 seconds. You should open the PSD b...

más de 10 años hace | 1

| aceptada

Respondida
Test trained NARX neural network with new external input
Here is an example from the Neural Network toolbox documentation that you might find helpful: * <http://www.mathworks.com/hel...

más de 10 años hace | 0

Respondida
Undefined function or method 'markers2' for input arguments of type 'double'
You're calling a function, |markers2|. Since this is not a standard MATLAB function, you should have a file in your directory na...

más de 10 años hace | 0

| aceptada

Respondida
read .img format image without header file
You could directly read the *.img file directly into the MATLAB workspace via the |fopen| and |fread| commands. Since you do not...

más de 10 años hace | 0

Respondida
How to choose initial component parameters with gmdistribution.fit ?
Once you have clustered your data via the k-means algorithm, you can definitely use the cluster centers as initial conditions fo...

más de 10 años hace | 2

| aceptada

Respondida
what is the default amplitude value of the input signal when matlab gives the frequency response with fuction bode ?
Good question! The magnitude Bode plot depicts only the *relative gain* between two signals. Likewise, the phase plot gives you ...

más de 10 años hace | 0

Respondida
Handwritten digit recognition using Neural networks; How to configure for 2-D input?
Specifying an image as a column vector does not eliminate the adjacency information. As the column of pixels repeats at a regula...

más de 10 años hace | 0

| aceptada

Respondida
How to use the trained network to predict future values?
Once you have trained a network, you can use your net as a function. In your case, the outputs of the neural network could be fo...

más de 10 años hace | 0

Respondida
Show value on the root locus plot without using the Data Cursor
The |rlocus| function can output the complex root locations and the corresponding gains. You can manually plot these values to r...

más de 10 años hace | 0

| aceptada

Respondida
PNG and BMP images with imag(image) = 0. Why and how do I get something that makes sense/a nonzero answer?
You are using the |imag| function that returns the imaginary part of the function input. The function input in your case will ha...

más de 10 años hace | 1

Respondida
Show Step Response Information on Step Response Plot
You're on the right track trying to use |stepinfo|. The |stepinfo| function returns a structure containing all the common step r...

más de 10 años hace | 4

| aceptada

Respondida
How to not draw some points of an interval( hmax and hmin )
You can use logical indexing to remove any values greater than and less than the desired bounds. % Defining some arbitrary ...

más de 10 años hace | 0

Respondida
how to drive out an equation from the trained neural network to use as an objective function for genetic algorithm?
You have a couple of options to acquire the underlying structure for further use, once you have trained your neural network: ...

más de 10 años hace | 1

| aceptada

Respondida
Plot two graphs each from different models in one scope
You can use the "mux" function block to combine the two signals of interest. The output of the mux block can be fed directly int...

más de 10 años hace | 1

Respondida
Help using poly fit to determine equation constants of power function and plotting the linear form
You just need to transform the linear fit coefficients (the outputs from |polyfit|) from a logarithm scale back to the linear sc...

más de 10 años hace | 2

| aceptada

Respondida
Properly normalize a pdf histogram
Your code looks good, and you've definitely normalized the histogram correctly. However, you've got one thing that needs fixing....

más de 10 años hace | 1

| aceptada