답변 있음
How to plot rows from a particular column number?
plot(ur_matrix(:,10:end))

8년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

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

8년 초과 전 | 0

제출됨


SIMULATION _PICK AND PLACE ROBOT
Basic function of Pick and Place robots

8년 초과 전 | 다운로드 수: 2 |

Thumbnail

답변 있음
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년 초과 전 | 5

| 수락됨

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
Mean of several variables
Your code is correct .Kindly verify size of "pokus" if you initialized

8년 초과 전 | 0

답변 있음
structfun output array not working
s=structfun(@numel,timelockdata,'UniformOutput',0)

8년 초과 전 | 0

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

| 수락됨

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 1

| 수락됨

답변 있음
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년 초과 전 | 2

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

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

8년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 0

답변 있음
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년 초과 전 | 2

| 수락됨

답변 있음
I wish to know, if there is anyway to convert a simulink block to a C file or .m file.
<http://in.mathworks.com/help/dsp/ug/generate-code-from-simulink.html C Code Generation from Simulink>

8년 초과 전 | 0

답변 있음
default mupad font size
* view-->configure(Configure mupad window) * Notebook--->default formats(All new notebooks wondow) * Format --->character&size...

8년 초과 전 | 0

더 보기