怎样在MATLAB中提数据的极值。
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
网上线上百家乐网站【微8785092】
el 24 de Mayo de 2023
Respondida: 百家乐真人平台网址【微8785092】
el 24 de Mayo de 2023
急求。大神们,怎样在MATLAB中提 数据的极值啊
0 comentarios
Respuesta aceptada
百家乐真人平台网址【微8785092】
el 24 de Mayo de 2023
估计LZ调用findpeaks函数没有用对。用LZ的dcp数据,程序如下,
xx=load('dcp.txt');
t=xx(:,1);
x=xx(:,2);
plot(t,x); grid; hold on
[K,V]=findpeaks(x);
thr=1200;
vdex=find(V>thr);
V1=V(vdex);
K1=K(vdex);
plot(t(K1),V1,'r.','linewidth',5);
title(['信号提取极值,阈值thr=' num2str(thr)]);
其中阈值可任意设置,图中红点表示极值点。
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 描述性统计量 en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!