使用Visual Studio 2022通过mcc调用MatlabR2022b程序初步

C++调用Matlab傅里叶变换程序

  1. 封装一个Matlab函数脚本newfft.m,这里使用两个返回值的快速傅里叶变换,得到其幅值和相位

    function [M, P] = newfft(arr)
        M = abs(fft(arr));
        P = angle(

你可能感兴趣的:(visual,studio,matlab,算法)