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
|
| [xx,yy]=treat(x,y);
|
function [xx,yy]=treat(x,y);
% this file is for sorting a set of x-y values is assending order in x with
% corresponding y values
z=[x;y];
z=z';
size(z);
zz=sortrows(z,1);
xx=zz(:,1);
yy=zz(:,2);
|
|
Contact us at files@mathworks.com