Code covered by the BSD License
-
[TT,yy,kk]=maxima(tt,u1);
This file obtain coordinates and indices of extreme multiple maximum
-
[TT,yy,kk]=minima(tt,u1);
This file obtain coordinates and indices of extreme multiple minimum
-
[x,y]=clean(x,y)
this M-file is for manually removing few stray points from a set of x y
-
[x,y]=oscilloscope(x_sensetiv...
statments 63 to 68 are for calibrating pixels to voltage and/or time
-
[xx,yy]=treat(x,y);
this file is for sorting a set of x-y values is assending order in x with
-
View all files
from
Oscilloscope
by aasim Azooz
This software helps in obtaining numerical data of an oscilloscope trace
|
| [x,y]=clean(x,y)
|
function [x,y]=clean(x,y)
% this M-file is for manually removing few stray points from a set of x y
% data
plot(x,y)
N=input('How many stray spikes need to be cleaned?? ')
[a,b]=ginput(2*N);
for i=1:2:2*N-1
k=find(x>a(i)&x<a(i+1));
x(k)=[];
y(k)=[];
end
plot(x,y)
|
|
Contact us at files@mathworks.com