简体   繁体   English

以八度为单位的导入功能

[英]import function in octave

I am running matlab code in octave. 我在八度音程中运行matlab代码。 The import function is not implemented in core octave, I guess. 我想,导入功能没有在核心八度中实现。 Any idea how to use this matlabe function in octave? 知道如何在八度音阶中使用这个matlabe函数吗?

Here is what I have: octave-3.4.0:7> setup Importing packages: brml.* warning: the `import' function is not yet implemented in Octave 这就是我所拥有的:octave-3.4.0:7> setup导入包:brml。*警告:“导入”功能尚未在Octave中实现

Please read ` http://www.octave.org/missing.html ' to learn how you can contribute missing functionality. 请阅读“ http://www.octave.org/missing.html ”以了解如何提供缺少的功能。

error: `import' undefined near line 8 column 5 错误:第8行第5列附近未定义`import'

You can make your own custom import.m. 您可以自己定制import.m。 From http://octave.1599824.n4.nabble.com/namespace-support-td1638758.html : 来自http://octave.1599824.n4.nabble.com/namespace-support-td1638758.html

function import(varargin) 
 error(nargchk(1, inf, nargin, "struct")); 
 for i=1:nargin 
   [names, funcs] = import1(varargin{i}); 
   for j=1:length(names) 
     assignin("caller", names{j}, funcs{j}); 
   endfor 
 endfor 
endfunction 

function [names, funcs] = import1(pkgname) 
 pkgname_parts = strsplit(pkgname, "."); 
 if length(pkgname_parts) > 2 
   error("invalid package name: %s", pkgname); 
 endif 
 pkgpath = locatepkg(pkgname_parts{1}); 
 unwind_protect 
   cwd = pwd; 
   cd(pkgpath); 
   names = what(pwd); 
   names = {names.m{:}, names.mex{:}, names.oct{:}}; 
   names = cellfun(@stripExtension, names, "UniformOutput", false); 
   if length(pkgname_parts) == 2 
     if any(strcmp(pkgname_parts{2}, names)) 
       names = {pkgname_parts{2}}; 
     else 
       error("function `%s' not found in package `%s'", ... 
         pkgname_parts{2}, pkgname_parts{1}); 
     endif 
   endif 
   funcs = cellfun(@str2func, names, "UniformOutput", false); 
 unwind_protect_cleanup 
   cd(cwd); 
 end_unwind_protect 
endfunction 

function pkgpath = locatepkg(pkgname) 
 pathdirs = strsplit(path, pathsep); 
 for iPath=1:length(pathdirs) 
   pkgpath = [pathdirs{iPath} filesep "+" pkgname]; 
   if exist(pkgpath, "dir") 
     return; 
   endif 
 endfor 
 error("package `%s' cannot be located in the path", pkgname); 
endfunction 

function fileName = stripExtension(fileName) 
 dotIndices = strfind(fileName, "."); 
 fileName = fileName(1:(dotIndices(end)-1)); 
endfunction 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM