06 2022 档案

摘要:记录一下matlab中时历曲线分析的相关函数 FFT function out = myFFT(time,data) % 功能:FFT % 输入:time:时间 % data:数据 % 输出:out.Fre:频率 % out.Ampti:幅值 % out.Phase:相位 N=length(data 阅读全文
posted @ 2022-06-27 14:25 陈橙橙 阅读(393) 评论(0) 推荐(0)
摘要:记录一下,利用正则表达式判断字符串是否为数值(匹配是否为整数,浮点数或者科学计数法数值) 参考博客 #include <QString> #include <QDebug> #include <iostream> #include <QRegExp> static bool isNumeric(QS 阅读全文
posted @ 2022-06-05 15:08 陈橙橙 阅读(1436) 评论(0) 推荐(0)