Matlab code completion for class method in a class folder and namespace

让人想犯罪 __ 提交于 2020-01-30 06:36:05

问题


I have a class that is located in a namespace folder, and within this namespace folder it is inside a class folder. Thus, the directory structure is

inpath/+namespace/@ClassName/ClassName.m

I'd like to provide some code suggestions for a method defined in ClassName.m.

I have generated a functionSignature.json file and placed it in

inpath/+namespace/@ClassName/

which did not work, and also in

inpath/+namespace/

which didn't work either.

Furthermore, I have tried the following function names:

"Classname.Methodname"

and

"namespace.ClassName.MethodName"

in both locations, but it did not work.

The answer to this question says that the syntax "ClassName.MethodName" is correct for class methods, but the class was not located in a namespace (and the answer does not say whether the class was defined in a class directory).

To be sure that there are no other errors, here is my original functionSignature.json file (using "namespace.ClassName.MethodName"):

{
  "SICM.SICMScan.FromFile":
  {
     "inputs":
     [
         {"name":"in1",  "kind":"ordered", "type":"file=*.sicm,*.sic,*.ras"}
     ]
  }
} 

My questions are:

  • Where to put this file in the above case?
  • How to name the method?

回答1:


it seems that my initial hunch is correct: the functionSignature.json file needs to be in whichever directory you add to the MATLAB path to use the functions. Since namespace directories are not directly added to the path, but their parent directory is, the functionSignature.json directory needs to be in the parent directory of the namespace directory.



来源:https://stackoverflow.com/questions/56672806/matlab-code-completion-for-class-method-in-a-class-folder-and-namespace

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!