
Simulink
东枫科技
这个作者很懒,什么都没留下…
展开
-
F-OFDM MATLAB实现 可以在Simulink运行
F-OFDM使用MATLAB OOP编写classdef FOFDMModulator < matlab.System % F-OFDM Modulator % % This template includes the minimum set of functions required % to define a System object with discrete state. % Public, tunable properties prop原创 2022-02-21 18:25:35 · 748 阅读 · 2 评论 -
「MATLAB BUG」the font “Times” is not available
问题描述启动MATLAB的时候,提示:Warning: the font “Times” is not available, so “Lucida Bright” has been substituted, but may have unexpected appearance or behavior. Re-enable the “Times” font to remove this warning.解决安装字体即可。字体下载地址:https://www.freebestfonts.com/down原创 2021-11-28 22:31:33 · 1962 阅读 · 0 评论 -
【通信原理】2X2 MIMO 信道估计 Simulink MATLAB
frmLen = 100; % frame lengthN = 2; % number of Tx antennasM = 2; % number of Rx antennaspLen = 8; % number of pilot symbols per frameW = hadamard(pLen);pilots = W(:, 1:N); % orthogonal set原创 2021-06-24 11:16:35 · 1427 阅读 · 0 评论 -
【Simulink】数字控制振荡器 NCO ( N umerically CONtrolled Oscillator )
一般性原理图Simulink 实现NCOLP产生波原创 2021-01-11 19:33:54 · 3442 阅读 · 2 评论 -
【Simulink】Bit to Integer Converter 模块:输入的比特流为N*1的矩阵或者向量
Bit to Integer Converter 模块:输入的比特流为N*1的矩阵或者向量原创 2021-01-08 10:47:38 · 3885 阅读 · 2 评论 -
【Simulink】Data Store Read & Data Store Write 的采样率问题
系统模型采样率配置一模块采样率Data Store Read1Data Store Write1采样率配置二模块采样率Data Store Read2Data Store Write1采样率配置三模块采样率Data Store Read1.1Data Store Write1...原创 2021-01-08 09:38:02 · 1326 阅读 · 0 评论 -
【Simulink】如何使用全局变量、多个模型中使用、Simulink.Signal 对象
Simulink.Signal类似其他编程语言的全局变量。创建全局变量B = Simulink.Signal;配置属性B=Simulink.Signal;B.DataType='double';B.Dimensions=[5 5];Simulink 中调用原创 2021-01-07 19:51:43 · 3364 阅读 · 0 评论