답변 있음
Deletting X and Y axes ticks
set(gca,'xtick',[]) set(gca,'ytick',[]) set(gca,'xticklabel',[]) set(gca,'yticklabel',[])

대략 12년 전 | 0

답변 있음
Deletting X and Y axes ticks
set(gca,'xtick',[]) set(gca,'ytick',[])

대략 12년 전 | 1

| 수락됨

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

대략 12년 전 | 0

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

대략 12년 전 | 0

답변 있음
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...

대략 12년 전 | 0

답변 있음
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...

대략 12년 전 | 0

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

대략 12년 전 | 0

답변 있음
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 ...

대략 12년 전 | 0

답변 있음
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....

대략 12년 전 | 0

답변 있음
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); ...

대략 12년 전 | 0

| 수락됨

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

대략 12년 전 | 0

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

대략 12년 전 | 0

답변 있음
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...

대략 12년 전 | 0

| 수락됨

답변 있음
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.

대략 12년 전 | 0

질문


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

12년 초과 전 | 답변 수: 1 | 0

1

답변

제출됨


save.m
I have attached the file for continuously saving the image to particular folder.

12년 초과 전 | 다운로드 수: 1 |

Thumbnail