Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: Matlab 中的默认参数 如何在 MATLAB 中处理函数参数的名称/值对
如果您需要创建一个带有可选参数音调的函数怎么办。有没有办法在命名传递的参数以提高可读性时调用该函数:
foo(123, and=456)
在 Matlab 中执行此操作的类似方法是具有名称/值对:
foo(123,'and',456,'something',[1 2 3])
有关如何处理它们,请参阅此问题的答案。