<?xml version="1.0" encoding="gbk"?>
<rss version="2.0">
  <channel>
    <title>Hello Mat - 基本操作</title>
    <link>http://halcom.cn/forum.php?mod=forumdisplay&amp;fid=151</link>
    <description>Latest 20 threads of 基本操作</description>
    <copyright>Copyright(C) Hello Mat</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Sun, 10 May 2026 00:45:08 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://halcom.cn/static/image/common/logo_88_31.gif</url>
      <title>Hello Mat</title>
      <link>http://halcom.cn/</link>
    </image>
    <item>
      <title>回归模型公式</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=55687</link>
      <description><![CDATA[Xdegree=1，Ydegree=1
Linear model Poly11:
     f(x,y) = p00 + p10*x + p01*y
Coefficients (with 95% confidence bounds):
       p00 =       41.68  (40.59, 42.76)
       p10 =   -0.001093  (-0.005824, 0.003638)
       p01 =    -0.04824  (-0.0529 ...]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Thu, 09 Jun 2022 05:56:47 +0000</pubDate>
    </item>
    <item>
      <title>获取当前文件夹下全部文件名称</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=55634</link>
      <description><![CDATA[]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Tue, 05 Apr 2022 07:39:58 +0000</pubDate>
    </item>
    <item>
      <title>Matlab处理数据绘图经验小结</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=53821</link>
      <description><![CDATA[clc;%清理命令行窗口
%clear all;%清理工作区
% tx=xlsread(\'C:%users\\.xlsx\');
tx=xlsread(\'C:%users\\LYZ\\Desktop\\T-All.xlsx\');
%tx=xlsread(\'\')
x=tx(:,1);
y1=tx(:,2);
y2=tx(:,3);
y3=tx(:,4);
y4=tx(:,5);
y5=tx(:,6);
y6=tx(:,7);
% y3=tx(:,4);
%  ...]]></description>
      <category>基本操作</category>
      <author>1qaz</author>
      <pubDate>Fri, 11 Dec 2020 01:31:08 +0000</pubDate>
    </item>
    <item>
      <title>三次样条插值</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=53713</link>
      <description><![CDATA[]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Thu, 10 Sep 2020 14:34:57 +0000</pubDate>
    </item>
    <item>
      <title>仿照大佬的绘图程序试着自己画一个图像，为啥不行呐</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=51316</link>
      <description><![CDATA[错误使用 mesh (line 58)
设置 Surface 的 \'ZData\' 属性时:
值必须是数值类型的标量、矢量或数组
这个Y显示是21*21*21  是因为他不是矩阵的原因吗
请教一下，希望能帮助一下小弟

clc,clear,close all
x1=-1:0.1:1;
x2=-1:0.1:1;
x3=-1:0.1:1;
for i =1:lengt ...]]></description>
      <category>基本操作</category>
      <author>丛玮琦77</author>
      <pubDate>Sat, 28 Sep 2019 00:32:49 +0000</pubDate>
    </item>
    <item>
      <title>遍历文件夹下的全部图像文件</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=41312</link>
      <description><![CDATA[遍历文件夹下的全部图像文件：并将其切分，写入到另一个文件夹]]></description>
      <category>基本操作</category>
      <author>GTX_AI</author>
      <pubDate>Tue, 14 May 2019 15:24:41 +0000</pubDate>
    </item>
    <item>
      <title>加载mat文件，指定任意名称</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=24658</link>
      <description><![CDATA[当有不同的mat需要加载时，每次只能加载一个进行演示，如何进行赋值相同的名称，这个代码很关键：
[filename ,pathname]=uigetfile({\'*.mat\';\'*.*\';},\'选择信号\');         %选择mat路径
FileFullName = ;                                       %合成路径+文件名
% ...]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Thu, 07 Jun 2018 16:06:49 +0000</pubDate>
    </item>
    <item>
      <title>符号函数操作</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=13813</link>
      <description><![CDATA[solve进行等式求解，然后采用subs进行赋值处理，最后进行double()数据类型转换]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Fri, 20 Apr 2018 14:20:52 +0000</pubDate>
    </item>
    <item>
      <title>批量读出图片和写入图片的问题</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=6257</link>
      <description><![CDATA[程序如下，为什么写入不了我指定的文件夹中？
clc
clear all;
size_row=300;
size_col=300;

%%
tic;
n=5000;
 for i=1:n
    imageName=strcat([\'C:%users\\Administrator\\Desktop\\zz1\\A\\\' num2str(i) \'.jpg\']);
    I = imread(imageName);
    I2=flipdim ...]]></description>
      <category>基本操作</category>
      <author>QQQQ</author>
      <pubDate>Mon, 06 Nov 2017 11:28:24 +0000</pubDate>
    </item>
    <item>
      <title>获取文件夹内的全部图像文件（根据图像后缀格式）</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=3952</link>
      <description><![CDATA[获取文件夹内的全部图像文件：]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Fri, 25 Aug 2017 15:00:37 +0000</pubDate>
    </item>
    <item>
      <title>添加文件夹路径、移除文件夹路径</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=2232</link>
      <description><![CDATA[具体如下：
当前文件夹路径：子文件夹【蝙蝠算法】、【遗传算法】
对比其结果画图，具体如下：]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Sun, 07 May 2017 10:24:07 +0000</pubDate>
    </item>
    <item>
      <title>字符串、数据等写入txt数据</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=2231</link>
      <description><![CDATA[MATLAB连通域检测，求解二值化特征，计算轴长、面积、轴长等，并写入Txt文本文件，具体代码如下：]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Sun, 07 May 2017 09:31:58 +0000</pubDate>
    </item>
    <item>
      <title>MATLAB点云处理--三维曲面构建</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=1651</link>
      <description><![CDATA[具体的代码下载链接：**** 本内容被作者隐藏 ****]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Thu, 20 Apr 2017 15:16:22 +0000</pubDate>
    </item>
    <item>
      <title>基本操作——聚宝盆</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=856</link>
      <description><![CDATA[【1】CSF三维曲面（人眼对比度敏感函数）
【2】Oblique effect &amp;#64257;lter (OEF) 三维曲面
【3】能量衰减图--水滴波纹模拟--滤波器构建
【4】二维数据插值griddata
【5】Matlab中的代码如何自动对齐
【6】MATLAB设置坐标轴显示小数
【7】图像平移、旋转、缩放、 ...]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Tue, 28 Mar 2017 05:13:09 +0000</pubDate>
    </item>
    <item>
      <title>CSF人眼对比度敏感函数三维曲面</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=855</link>
      <description><![CDATA[两个高斯低通滤波器的减法运算

[*]**** 本内容被作者隐藏 ****]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Tue, 28 Mar 2017 05:12:26 +0000</pubDate>
    </item>
    <item>
      <title>Oblique effect &#64257;lter (OEF) 三维曲面</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=734</link>
      <description><![CDATA[Oblique effect &amp;#64257;lter (OEF) 三维曲面--MATLAB代码：
**** 本内容被作者隐藏 ****]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Thu, 23 Mar 2017 14:27:55 +0000</pubDate>
    </item>
    <item>
      <title>Matlab中的代码如何自动对齐</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=531</link>
      <description><![CDATA[Matlab中自动对齐的快捷键操作：CTRL+I

VS2012工程的自动对齐的快捷键操作：CTRL+K，CTRL+D]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Sat, 11 Mar 2017 13:05:11 +0000</pubDate>
    </item>
    <item>
      <title>视频转化为帧图像</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=500</link>
      <description><![CDATA[]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Tue, 07 Mar 2017 13:20:44 +0000</pubDate>
    </item>
    <item>
      <title>图像平移、旋转、缩放、镜像</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=379</link>
      <description><![CDATA[在Matlab中，图像是按照二维矩阵的形式表示的。所以对图像的操作就是对矩阵的操作。 
对图像进行缩放、平移、旋转，都可以转化为矩阵的运算。 
关于变换矩阵的构造，请参考： 
《 [gym 101047C Robotics Competition] 矩阵快速幂求解点旋转平移N次之后的位置》

图 ...]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Sun, 12 Feb 2017 08:29:25 +0000</pubDate>
    </item>
    <item>
      <title>能量衰减图--水滴波纹模拟--滤波器构建</title>
      <link>http://halcom.cn/forum.php?mod=viewthread&amp;tid=370</link>
      <description><![CDATA[主要功能：高斯滤波器，就是一个主波峰，然而我们根据能量的渐变过程，能不能构建如下图所示的高斯滤波器，多个波峰，效果是否会更好。
推荐：一本工作必备的滤波算法书籍《MATLAB图像滤波去噪分析及其应用》



参考链接：http://wzx05131015521847.blog.163.com/ ...]]></description>
      <category>基本操作</category>
      <author>Halcom</author>
      <pubDate>Sat, 11 Feb 2017 13:58:59 +0000</pubDate>
    </item>
  </channel>
</rss>