%用于一书%%离散信号和系统%conv_m-改进的线性卷积子程序(第22页)%conv_tp-用Toeplitz矩阵计算的线性卷积(第34页)%evenodd-将实信号分解为偶和奇两部分(第15页)%impseq-产生脉冲序列(第6页)%sigadd-信号相加运算(第8页)%sigfold-信号折叠运算(第10页)%sigmult-信号乘法运算(第9页)%sigshift-信号时移运算(第9页)%stepseq-产生阶跃序列(第6页)%离散时间付利叶变换(第z变换)%pfe2rfz-在z域由部分分式展开为有理函数(第四章)%rf2pfez-在z域由有理函数展开为部分分式(第四章)%离散付利叶变换%circevod-实信号分解为循环偶分量和循环奇分量(第132页)%circonvt-时域中的循环卷积(第139页)%cirshftt-时域中的循环移位(第146页)%dfs-计算离散付利叶系数(第109页)%dft-计算离散付利叶变换(第120页)%hsolpsav-采用FFT高速分段卷积的重叠保留法(第157页)%idfs-计算逆离散付利叶级数(第110页)%idft-计算逆离散付利叶变换(第121页)%mod-计算m=nmodN(第119页)%ovrlpsav-分段卷积的重叠保留法(第147页)%数字滤波器结构%cas2dir-级联到直接的形式转换(第173页)%casfiltr-IIR和FIR滤波器的级联实现(第172页)%cplxcomp-比较两个复数对(第176页)%dir2cas-直接到级联的型式转换(第171页)%dir2fs-直接形式到频率采样型的转换(第187页)%dir2ladr-IIR直接形式极__零点到格型/梯形的转换(第199页)%dir2latc-FIR直接形式到全零点格型形式的转换(第193页)%dir2par-直接到并联形式的转换(第175页)%dir2paro-直接到并联形式的转换(用于旧版信号处理工具箱)%ladr2dir-格型/梯形形式到IIR直接形式的转换(第199页)%ladrfilt-格型/梯形形式的IIR滤波器实现(第200页)%latc2dir-全零点格型形式到FIR直接形式的转换(第194页)%latcfilt-FIR滤波器的格型形式的实现(第194页)%par2dir-并联形式到直接形式的转换(第177页)%parfiltr-IIR滤波器的并联形式的实现(第177页)%FIR滤波器设计% ampl_res -由FIR滤波器脉冲响应求其幅频特性(第271页)%blackman-布莱克曼窗函数(第230页)%freqz_m-改进型的freqz子程序(第233页)%Hr_Type1-计算1型FIR低通滤波器(第215页)%Hr_Type2-计算2型FIR低通滤波器(第216页)%Hr_Type3-计算3型FIR低通滤波器(第216页)%Hr_Type4-计算4型FIR低通滤波器(第
2024/10/4 22:44:49 31KB 数字信号 matlab 算法集合
1
matlab例程,用于多重卷积函数。
DSPwithMatlabbyProakisandIngle
2024/10/2 13:17:35 333B matlab conv_m
1
利用fft实现线性卷积。
已知序列x1=[1234],x2=[136542];
利用conv函数求x1和x2的线性卷积y(n)并绘出图形;
另外,利用fft求x1和x2的9点循环卷积,并绘出图形;
在用fft求x1与x2的8点和10点循环卷积,并绘出图形,比较四次结果,说明线性卷积与循环卷积的关系。
2024/9/26 21:18:12 841B 实现线性卷积
1
解决sdktools运行缺少adb和hprof-conv文件,解压后直接把这两个文件夹复制到android-sdk-windows目录下,重新运行SDKManager.exe即可。
2024/9/8 5:54:46 5.93MB ADB
1
hprof-conv.exe关于sdktools里面缺少这个运行文件
2024/6/1 21:35:43 8KB hprof-conv
1
%线性调频信号的实部和虚部及时域脉压输出clearall;clc;T=16e-6;B=5e6;K=B/T;fs=6*B;Ts=1/fs;N=T/Ts;t=-T/2:T/(N-1):T/2;s=exp(j*pi*K*t.^2);y=conv(s,conj(s));len=length(y);t1=-T/2:T/(len-1):T/2;figure;plot(t,real(s));gridon;axis([-1.2e-51.2e-5-11]);xlabel('时间(s)');ylabel('幅度');title('LFM信号的I路');figure;plot(t,imag(s));gridon;axis([-1.2e-51.2e-5-11]);xlabel('时间(s)');ylabel('幅度');title('LFM信号的Q路');figure;plot(t1,20*log10(abs(y)/max(abs(y))));gridon;axis([-1.2e-51.2e-5-900]);xlabel('时间(s)');ylabel('幅度(dB)');title('时域脉压后的波形(未加权)');subplot(311);plot(t,real(s));gridon;xlabel('time(s)');ylabel('amplitude(dB)');title('realpartofLFM:T=16us,B=4MHz');axis([-T/2T/2-11]);subplot(312);plot(t,imag(s));gridon;xlabel('time(s)');ylabel('amplitude(dB)');title('imagepartofLFM:T=16us,B=4MHz');axis([-T/2T/2-11]);subplot(313);plot(t1,20*log10(abs(y)/max(abs(y))));gridon;axis([-1.2e-51.2e-5-900]);xlabel('时间(s)');ylabel('幅度(dB)');title('时域脉压后的波形(未加权)');
2024/3/14 17:47:39 2KB lfm match filter
1
hprof-conv.exe在sdktools里面缺少这个运行文件导致DDMSfilesnotfound:tools\hprof-conv.exe错误,详细看博客:https://blog.csdn.net/DickyQie/article/details/79657573
2023/11/28 12:31:43 4KB hprof-conv
1
MasteringPythonNetworkingEnglish|2017|ISBN-10:1784397008|446pages|PDF+EPUB+MOBI(conv)|9.76MbKeyFeaturesBuildtheskillstoperformallnetworkingtasksusingPythonwitheaseUsePythonforNetworkDeviceAutomation,DevOps,andSoftwareDefinedNetworkingPracticalguidetonetworkingwithPythonBookDescriptionYouwillbeginwithareviewoftheTCP/IPProtocolSuiteandtorefreshthecoreelementsofthePythonlanguage.NextyouwillstartusingPythontoautomatenetworkdevicesandachieveallthatyouwantfromyournetwork.YouwillthenmovetousingPythonforDevOpswhereyouwillbesecuringnetworks,monitoringnetworks,andbuildingnetworkservices.Inthelastmodule,youwillusePythonforSDN,whereyouwillusePythonwithOpenFlow,OpenStack,OpenDayLight,andNFV.FinallyyouwilluseeverythingyouhavelearnedsofarinthisbooktoconstructaPython-basedmigrationplantogofromlegacytoascalableSDN-basednetwork.Bytheendofthebookyouwillhavealltheskillsrequiredtoperformcomplexnetwork-relatedtaskswithPythonWhatyouwilllearnReviewofallthefundamentalsofPythonandTCP/IPsuiteUsePythontoexecutecommandswhenthedevicedoesnotsupporttheAPIorprogrammaticinteractionwiththedeviceImplementautomationtechniquesbyintegratingPythonwithCisco,Juniper,andandAristaEAPIIntegrateAnsibleusingPythontocontrolCisco,Juniper,andAristanetworksAchieveNetworksecuritywithPythonBuildhigh-performingwebserviceswithPythonConstructaPython-basedmigrationplanfromlegacytoascalableSDN-basednetwork.Downloadfromicerbox.com
2023/9/23 5:35:26 9.76MB Python Networking
1
MasteringTypeScript-SecondEditionbyNathanRozentalsEnglish|6Mar.2017|ISBN:1786468719|651Pages|EPUB/PDF(conv)|12.4MBKeyFeaturesStartwiththebasics,thenenhanceyourknowledgewithin-depthdiscussionsonlanguagefeatures,third-partylibraries,designpatternsandmorePracticalexamplesthatshowhowtouseTypeScriptwithpopularframeworks,includingBackbone,Angular2,React,Aurelia,NodeandothersFocusontest-drivendevelopmenttobuildhighqualityapplicationsthataremodular,scalableandadaptableBookDescriptionTheTypeScriptlanguage,compilerandopen-sourcedevelopmenttoolsetbringsJavaScriptdevelopmentuptotheenterpriselevel.ItallowsustouseES5,ES6andES7JavaScriptlanguagefeaturestoday-includingclasses,interfaces,generics,modulesandmore.It'ssimpletypingsyntaxenablesbuildinglarge,robustapplicationsusingobject-orientedtechniquesandindustrystandarddesignprinciples.Packedwithpractical,real-worldexamples,thisbookisaguidetobringingthebenefitsofstronglytyped,object-orientedprogramminganddesignprinciplesintotheJavaScriptdevelopmentspace.Startingwithcorelanguagefeatures,andworkingthroughmoreadvancedtopicssuchasgenericsandasynchronousprogrammingtechniques,youwilllearnhowtogainmaximumbenefitfromyourJavaScriptdevelopmentwithTypeScript.Withastrongfocusontest-drivendevelopment,andcoverageofmanypopularandin-demandJavaScriptframeworks,youcanfast-trackyourTypeScriptknowledgetoaprofessionallevel.Bytheendofthisbook,youwillbeabletoconfidentlybuildTypeScriptapplications,whetheryouaretargetingAngular2,Aurelia,React,Backbone,NodeoranyotherJavaScriptframework.WhatyouwilllearnGainaninsightintocoreandadvancedTypeScriptlanguagefeaturesincludinginheritance,generics,asynchronousprogrammingtechniques,promises,decoratorsandmoreIntegrateyourexistingJavaScrip
2023/8/27 16:10:15 12.4MB TypeScript
1
序列图像的超分辨重建,有几种不同的算法MAP,POCS,conv,还有插值算法。
2023/7/29 12:41:25 3.61MB 序列图像的超分辨重建
1
共 15 条记录 首页 上一页 下一页 尾页
在日常工作中,钉钉打卡成了我生活中不可或缺的一部分。然而,有时候这个看似简单的任务却给我带来了不少烦恼。 每天早晚,我总是得牢记打开钉钉应用,点击"工作台",再找到"考勤打卡"进行签到。有时候因为工作忙碌,会忘记打卡,导致考勤异常,影响当月的工作评价。而且,由于我使用的是苹果手机,有时候系统更新后,钉钉的某些功能会出现异常,使得打卡变得更加麻烦。 另外,我的家人使用的是安卓手机,他们也经常抱怨钉钉打卡的繁琐。尤其是对于那些不太熟悉手机操作的长辈来说,每次打卡都是一次挑战。他们总是担心自己会操作失误,导致打卡失败。 为了解决这些烦恼,我开始思考是否可以通过编写一个全自动化脚本来实现钉钉打卡。经过一段时间的摸索和学习,我终于成功编写出了一个适用于苹果和安卓系统的钉钉打卡脚本。
2024-04-09 15:03 15KB 钉钉 钉钉打卡