Sign in

username:

password:



Not a member?

Search matlab



Search tips

Subscribe to matlab



matlab by Keywords

Atanh | Autocorrelation | Bandpass Filter | C++ | Conv | Database | Deconv | Excel | FFT | Filter | Filtering | FIR | Fourier Transfrom | FSK | Gaussian Noise | Haykin | IFFT | Image | Java | LFSR | LMS | LPC | MEX | OFDM | QPSK | Radix | Random | Sampling | Segmentation | Simulink | Visual Basic | Waveform | Wavelet

Discussion Groups

Discussion Groups | Matlab DSP | Missing MATLAB operator

Technical discussion about Matlab and issues related to Digital Signal Processing.

  

Post a new Thread

Missing MATLAB operator - Tavisha - May 14 14:30:36 2008



HI Everyone...

I am working on this code and I keep getting this error .
please help.
Thanks

[code]

im = imread('S.jpeg');
im = rgb2gray(im);
im = im2double(im);
 g = im;
 im = imnoise(im,'speckle' , 0.6);
 im1 = ones(size(im));
 [m,n] = size(im);
 tic
 for i = 1:16:m-15
     for j = 1:16:n-15
         subim = im(i:i+15,j:j+15);
         [Energy wt sptx spty eptx epty]=extbeamlets(im)
         [selected xp0 yp0 xp1 yp1] = threshold(Energy sptx spty eptx
epty);
         result = drawbmlets(selected,xp0,yp0,xp1,yp1,subim);
         im1(i:i+15,j:j+15) = result;
     end
 end
 toc
 figure, imshow(im1);
 ################################################################
(selected xp0 yp0 xp1 yp1) = threshold(Energy sptx spty eptx epty);
                       |
Error: Missing MATLAB operator.

Please tell me why I get missing MATLAB Operator.. is it becausse I
have to write a sub code for threshold? Please help....


(You need to be a member of matlab -- send a blank email to matlab-subscribe@yahoogroups.com )