No BSD License
-
[xe,yen]=entropie(x,ye)
function entropie
-
plotc(x,y,v,marker)
FUNCTION PLOTC(X,Y,V,'MARKER') plots the values of v colour coded
-
plumbplot3(X,Y,Z,varargin);
PLUMBPLOT3 Plot points in 3D and projection lines onto the XY plane.
-
PWL.m
-
View all files
|
|
| [xe,yen]=entropie(x,ye)
|
function [xe,yen]=entropie(x,ye)
% function entropie
% Inputs= x,ye
% studied signal
% Output= xee,yee
% entropie function
%===============================================================================
% Title: entropie.m
%
% Project: entropie, another way of analyse signals
%
% Purpose: entropie=|sum(y'(x))|
% Find homogeneous part of a signal -> detection of abrupt
% changes
%
% Author: CREMOUX, MORLIER
%
% History: date subject
%
% 27.10.04 Initial Version
%
%
% Contact: jmorlier@lrbb.u-bordeaux.fr
%
%
%
%===============================================================================
dy=diff(ye);
yen0=0;
for jj=1:length(dy)
yen0=yen0+abs(dy(jj));
yen(jj)=yen0;
end
xe=x(1:length(x)-1);
|
|
Contact us at files@mathworks.com