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.
如果我在 .m 文件中编写一个函数并尝试通过按下“运行”按钮来运行它,该函数会只是在环境中设置还是运行,可能没有参数?
如果该函数不接受任何参数,那么它将被简单地执行。如果该函数确实接受参数,并且您尝试通过 GUI 运行它,则应该提示您输入一组应该使用的默认参数。如果您将来运行脚本,将使用这些参数。
这在 Matlab 的文档中有所描述。
Matlab中有两种类型的mfile(带.m扩展名的文件): Scripts和Functions。(参见脚本与函数)
.m
有关如何以编程方式使用函数的信息,请参阅调用函数。