前言:
当前同学们对“matlab的搜索路径在哪儿设置”大致比较看重,咱们都需要了解一些“matlab的搜索路径在哪儿设置”的相关资讯。那么小编同时在网上收集了一些关于“matlab的搜索路径在哪儿设置””的相关知识,希望同学们能喜欢,兄弟们一起来了解一下吧!Matlab中如何添加自己的模块库(Library)
使用程序帮助一、按“F1”或者选择菜单项中的“Help”并打开“Product Help”二、找到“搜索”,并搜索“slblocks.m”三、按照说明即可添加
或者
不使用帮助进行添加先建立自己的“Library”,并保存新建一个“M文件”并保存到“Library”的文件夹中
内容如下:function blkStruct = slblocks
%SLBLOCKS Defines a block library.
% Library's name. The name appears in the Library Browser's
% contents pane.
blkStruct.Name = ['My' sprintf('\n') 'Library'];
% The function that will be called when the user double-clicks on
% the library's name. ;
blkStruct.OpenFcn = 'mylib';
% The argument to be set as the Mask Display for the subsystem. You
% may comment this line out if no specific mask is desired.
% Example: blkStruct.MaskDisplay =
'plot([0:2*pi],sin([0:2*pi]));';
% No display for now.
% blkStruct.MaskDisplay = '';
% End of blocks
三、可将上面的 My Library 改成自己想在“Simulink”中显示的 “库名称”
将 绿色字符 改成自己所建的 “Library”的名称四、添加库文件所在的文件夹路径到“Matlab”的搜索路径中:
1、打开菜单项“文件(File)”,选择“设置路径(Set Path)”并进行添加
或者
2、在“Command Window”中输入“pathtool”,然后添加
标签: #matlab的搜索路径在哪儿设置 #matlab loadlibrary找不到指定模块 #设置matlab搜索路径的方法 #设置matlab搜索路径有两种办法