Answered
Deletting X and Y axes ticks
set(gca,'xtick',[]) set(gca,'ytick',[]) set(gca,'xticklabel',[]) set(gca,'yticklabel',[])

11 years ago | 0

Answered
Deletting X and Y axes ticks
set(gca,'xtick',[]) set(gca,'ytick',[])

11 years ago | 1

| accepted

Answered
How to obtain Two bode plots on the same figure (overlapping)??
subplot(1,2,1); plot(code1); subplot(1,2,2); plot(code2);

11 years ago | 0

Answered
how to convert a matrix to a cell array
X= reshape(1:20,2,10)' C = mat2cell(X, [1,10],[2,1]); celldisp(C);

11 years ago | 0

Answered
Changing the parameters of a graph by GUI
i have created some example gui check this. % --- Executes on button press in pushbutton1. function pushbutton1_Callback...

11 years ago | 0

Answered
Vector operatin in Matlab
see these links it will help you http://www.mathworks.in/help/techdoc/ref/dot.html and http://www.mathworks.in/help/techdoc...

11 years ago | 0

Answered
Changing the parameters of a graph by GUI
switch val case 2 hold on title(string2) hold off case 3 hold on xla...

11 years ago | 0

Answered
Changing the parameters of a graph by GUI
before entering the switch case you open the figure window like this; figure; switch val case 2 hold on ...

11 years ago | 0

Answered
Generate a white Gaussian noise vector
y = wgn(m,n,p); generates an m-by-n matrix of white Gaussian noise. p specifies the power of y in decibels relative to a watt....

11 years ago | 0

Answered
Incrementing value in an executing loop
th=4 for i=1:4 for j=1:4 if A(i,j) < th A(i,j) = 0; G=nnz(A); ...

11 years ago | 0

| accepted

Answered
how to save work space?
save('filename','A','-append') use this code this may be useful for you.

11 years ago | 0

Answered
Error:Conversion to cell from logical is not possible.
r = { 'yaddata' 'c1' 'c2' 'c3' 'c4' 'c5' 'yar12' 'hi' 'hello' 'h...

11 years ago | 0

Answered
I want to find the minimum value.
You clear the command window using clear all command then you try surely will get or else Instead of you can use the code l=s...

11 years ago | 0

| accepted

Answered
I want to find the minimum value.
I have tried same value and i got the min value. i'm using 2011b. which version you are using.

11 years ago | 0

Question


Image segmentation
Hi... I am beginner in image processing. i want to segment the grayscale image Histogram normalization Based Segment...

12 years ago | 1 answer | 0

1

answer