limanjihe

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

统计

随笔分类 -  MATLAB

使用matlab生成用于ROM初始化的coe文件(转)
摘要:reference:https://www.cnblogs.com/chensimin1990/p/9759368.html 阅读全文

posted @ 2018-12-08 16:17 limanjihe 阅读(2253) 评论(0) 推荐(0) 编辑

用matlab绘制中国地图
摘要:reference:https://jingyan.baidu.com/article/870c6fc36fdacfb03ee4be58.html shp: http://muchong.com/html/201304/5748467.html MATLAB是著名的科学软件,具有绘图、编程、仿真等强 阅读全文

posted @ 2018-11-27 19:03 limanjihe 阅读(10061) 评论(0) 推荐(0) 编辑

MATLAB 地图工具箱 m_map 的安装和入门技巧(转)
摘要:reference: http://blog.sina.com.cn/s/blog_8fc890a20102v6pm.html 需要用一些地图工具,arcgis懒得装了,GMT(generic mapping tools)太复杂,因此搜到了m_map, 正好是MATLAB的工具箱。于是研究了一晚上。 阅读全文

posted @ 2018-11-27 16:47 limanjihe 阅读(8858) 评论(0) 推荐(1) 编辑

Matlab中小语法点总结(更新中)
摘要:1. A(:,1)' A(:)' A(:).' A(:,n)' 对矩阵A的低n列进行共轭转置;A(:).'对矩阵A进行转置; 2.subplot的使用方法: h =subplot(m,n,p) 将数字窗口分成m×n的网格, 并在当前图的第p个位置创建一个轴对象,并返回轴句柄。 坐标轴沿着图形窗口的第 阅读全文

posted @ 2018-11-27 15:12 limanjihe 阅读(481) 评论(0) 推荐(0) 编辑

MATLAB中mexFunction函数的接口规范(转)
摘要:reference:https://www.cnblogs.com/haoyul/p/5606720.html https://www.cnblogs.com/zeakey/p/3984733.html MEX文件的调用极为方便,其调用方式与MATALAB的内建函数完全相同,只需要在命令窗口内输入对 阅读全文

posted @ 2018-11-27 13:21 limanjihe 阅读(473) 评论(0) 推荐(0) 编辑

在MATLAB中安装MinGW-w64 C/C++ 编译器的方法
摘要:reference:http://blog.sina.com.cn/s/blog_167bbdec10102x113.html reference:http://blog.sina.com.cn/s/blog_167bbdec10102x113.html 在MATLAB中编译C/C++ 文件时出现以 阅读全文

posted @ 2018-11-27 11:25 limanjihe 阅读(15677) 评论(0) 推荐(1) 编辑

关于MEX函数的说明
摘要:reference:http://www.mathworks.com/help/matlab/ref/mex.html .MEX文件是一种可在matlab环境中调用的C(或fortran)语言衍生程序,MEX文件的后缀名按32位/64位分别为 .mexw32/.mexw64。MEX文件是由C或For 阅读全文

posted @ 2018-11-27 10:19 limanjihe 阅读(1350) 评论(0) 推荐(0) 编辑

matlab中文本文件与图像转化
摘要:一 将图片转化为txt文本文件 a=imread('picture.bmp'); //读取picture.bmp图片 b=rgb2gray(a); //由rgb图片转化为灰度图 c=b'; //matlab由图片转换为矩阵是一列一列转的,txt文件数据读入矩阵也是一列一列读入的,后文以行为单位处理的 阅读全文

posted @ 2018-11-25 01:06 limanjihe 阅读(5327) 评论(0) 推荐(1) 编辑

乘法“*”和点乘“.*”&除法“/”和点除“./”区别
摘要:reference:https://blog.csdn.net/xiaotao_1/article/details/79026406 reference:https://blog.csdn.net/xiaotao_1/article/details/79026406 reference:https: 阅读全文

posted @ 2018-11-25 00:05 limanjihe 阅读(2145) 评论(0) 推荐(1) 编辑

区分舍入函数fix/round/ceil/floor
摘要:1)fix(n)的意义是取小于n的整数(是向零点舍入的意思是往零的方向上靠),这是一类应用在整数取值上的函数,就如同以前我们所研究的求整问题; 例如:fix(pi)=3 ; fix(3.5)=3; fix(-3.5)=-3; 这样举例的意思是说明这与四舍五入无关,就是纯粹的一种取值函数。2)roun 阅读全文

posted @ 2018-11-24 23:53 limanjihe 阅读(643) 评论(0) 推荐(0) 编辑

fftshift函数详解
摘要:reference: https://ww2.mathworks.cn/help/matlab/ref/fftshift.html 一.实信号情况 因为实信号以fs为采样速率的信号在 fs/2处混叠,所以实信号fft的结果中前半部分对应[0, fs/2],后半部分对应[ -fs/2, 0]; 1)实 阅读全文

posted @ 2018-11-24 23:32 limanjihe 阅读(89403) 评论(0) 推荐(7) 编辑

FFT理解
摘要:*连续时间-周期性信号频谱 关于 fftshift函数:用于将数组进行循环移位,以达到对fft结果的负分量进行移位,方便结果的绘制; https://ww2.mathworks.cn/help/matlab/ref/fftshift.html *连续时间-非周期信号的频谱 综上: 抽样间隔T要选择足 阅读全文

posted @ 2018-11-24 23:22 limanjihe 阅读(1082) 评论(0) 推荐(0) 编辑

Matlab产生波形数据文件
摘要:reference: https://blog.csdn.net/HOOKNET/article/details/79254351 reference: https://blog.csdn.net/HOOKNET/article/details/79254351 reference: https:/ 阅读全文

posted @ 2018-11-23 17:37 limanjihe 阅读(4385) 评论(1) 推荐(0) 编辑

点击右上角即可分享
微信分享提示