Answered
For loop within a function?
I don't understand why do you going for for loop instead of using the inbuilt factorial function n = 3;%input value f =...

8 years ago | 0

Answered
How to manipulate cell array of vectors (just numbers ) that are not same length?
* Your file has a cell array which contains different length data in each cell * if you wants to plot a specific cell data you ...

8 years ago | 2

Answered
Why is nothing being stored in the "Workspace" after I run my code?
Possibly if you run the functions the variables will not stored in work space. Only the returned variables stored .If you not re...

8 years ago | 1

Answered
How to plot rows from a particular column number?
plot(ur_matrix(:,10:end))

8 years ago | 0

| accepted

Answered
runge kutta method wont plot graph
<https://people.sc.fsu.edu/~jburkardt/m_src/rk4/rk4.html here> you can find the example code

8 years ago | 0

Answered
how to include 3 phase transmissiion lines
using <http://in.mathworks.com/help/physmod/sps/powersys/ref/threephasepisectionline.html Three-Phase PI Section Line> you can d...

8 years ago | 0

Answered
How to plot a figure depending on another one using 2 buttons in GUI ?
<http://in.mathworks.com/matlabcentral/answers/273995-i-have-two-gui-in-matlab-and-i-want-to-make-gui-that-have-two-pushbutton-e...

8 years ago | 0

Answered
HMM training and image processing
<http://people.cs.ubc.ca/~murphyk/Software/HMM/hmm.html HMM Toolbox for Matlab>

8 years ago | 0

Answered
i have two gui in matlab and i want to make gui that have two pushbutton each pushbutton open one of two guis
Download the attached files and run "untitled.m"

8 years ago | 5

| accepted

Answered
Error using input comand
* Are you expecting like this clear all close all clc a='(0.5)*x^3 -3*x^2 +3*x -4'; x=input('...

8 years ago | 0

Answered
How to draw the below type of graph in MATLAB
The following links may help you <http://in.mathworks.com/help/stats/histfit.html Histogram with a distribution fit>, <http://i...

8 years ago | 0

| accepted

Answered
I want to calculate snr of a signal, can i get the code?
<http://in.mathworks.com/help/signal/ref/snr.html Signal-to-noise ratio> <http://in.mathworks.com/matlabcentral/fileexchange/435...

8 years ago | 0

| accepted

Answered
Mean of several variables
Your code is correct .Kindly verify size of "pokus" if you initialized

8 years ago | 0

Answered
structfun output array not working
s=structfun(@numel,timelockdata,'UniformOutput',0)

8 years ago | 0

Answered
How to use multiple USB webcam in Matlab
<http://in.mathworks.com/matlabcentral/answers/159983-bumblebee-2-image-acquisition-problem solution for similar problem>

8 years ago | 0

| accepted

Answered
about angles between each column
I am not sure about the formula. But you can refer the below code for store the values [m,n]=size(a); for it1 = 1:n ...

8 years ago | 0

Answered
how to make image database in matlab?
* Read all the images * save it in a single variable using save command (e.g _save var_name_ ) * you can use this saved image...

8 years ago | 0

Answered
Undefined function 'euler' for input arguments of type 'function_handle'.
* download the attached files and save in your working directory * Now execute euler(@funct,0,20,0,1) from your command window...

8 years ago | 0

| accepted

Answered
can we use knn classifier as a binary classifier? If it is possible then please tell me how to pass training data to train classifier in matlab R2013a
I am not sure about matrix as a input of K-NN classifier. I used vector as a input of K-NN .I am wondering that how do you rank ...

8 years ago | 0

Answered
How can I run the model of DFIG, after I finished it's equations ?
<http://in.mathworks.com/help/simulink/ug/using-the-sim-command.html Run Simulation Using the sim Command> <http://in.mathworks....

8 years ago | 1

| accepted

Answered
How to skip error and continue to execute the code
<http://in.mathworks.com/help/matlab/ref/try.html Execute statements and catch resulting errors (try, catch)>

8 years ago | 2

Answered
scrolling the screen togheter with the code
# Simply add the variable name in addition to the prompt message like below x = input('Enter the number of elements (x) '...

8 years ago | 0

Answered
how to apply glcm to all pixels of 256*256 matrix with their corresponding directional matrix of 256*256 matrix
<http://in.mathworks.com/matlabcentral/fileexchange/22187-glcm-texture-features here> you can find the code which gives you GLCM...

8 years ago | 0

Answered
how can we apply standard deviation to an image
f=imread('gee.jpg'); i=std2(f);

8 years ago | 0

Answered
I am getting error as " Too many input arguments" i am trying develop an optimized algorithm using the 6 prime numbers to generate encryption
<http://www.mathworks.com/matlabcentral/answers/101665-why-do-i-get-the-error-message-too-many-input-output-arguments-when-i-try...

8 years ago | 0

Answered
how plot s(t)
% for example t=0.1:0.1:pi s= cos(t/2).*cos(w*t)-sin(t/2).*sin(w*t) plot(s)

8 years ago | 0

Answered
How can I measure PSNR or MSE for 100 images and save the result to excel file?
% Example code list = dir('*.jpg') %list of images in the directory for i = 1:length(list) I = imread(li...

8 years ago | 0

Answered
Output argument "t" (and maybe others) not assigned during call to "Sum_Cosinefunction".
* In your code the output arguments are assigned within the if condition * There is a possibility for your input data may not s...

8 years ago | 0

Answered
Index exceeds matrix dimension in a for loop?
function[pos_N] = func(v_0, windspeed) pos_N = zeros(max(1+10*(0:0.1:1000)),2);%matrix initialization pos_N(1,1) = 0; %i...

8 years ago | 0

Answered
how to fix bwlabel error ?
The error message states that input image is three dimensional. use <http://in.mathworks.com/help/images/ref/im2bw.html im2bw> ...

8 years ago | 2

| accepted

Load more