Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by Predictor

  1. P

    help required in matlab code

    matlab code for non-trivial solution Here is an entire solution: >> vector= [1 2 3 10 11 12 13 90 91 100 101 102 103 104 105 106] vector = 1 2 3 10 11 12 13 90 91 100 101 102 103 104 105 106 >> % Set threshold for distance between segments...
  2. P

    help required in matlab code

    agglomerative clustering matlab code If I understand what you need, then I'd suggest something that begins with: % Set threshold for distance between segments threshold = 5; % Generate vector of segment labels SegmentLabel = cumsum([1 diff(vector) > threshold]) SegmentLabel = 1 1...
  3. P

    Any function in MATLAB to define function from sample values

    Re: Any function in MATLAB to define function from sample va If you simply need to "connect the dots", try using MATLAB's built-in spline functions, such as interp1, pchip and spline. If you need to fit a model to your data (a least-squares curve-fit, for instance, which won't necessarily...

Part and Inventory Search

Back
Top