摘要:
不同的组织都有不同的规定,对于matlab注释来说,只要包括以下几个方面就差不多够了: 1、Name of the function 函数的名称2、Description of what the function does 函数的功能 3、Format of the function call 函数 阅读全文
摘要:
先看一个脚本: x=1:6; y=[1 5 3 9 11 8]; plot(x, y, 'r*'); %Change the axes and label them axis([11 22 35 59]) xlabel('Time') ylabel('Temperature') %Put a tit 阅读全文