摘要: 功能 二维曲线绘图 语法 plot(Y)plot(X1,Y1,...)plot(X1,Y1,LineSpec,...)plot(...,'PropertyName',PropertyValue,...)plot(axes_handle,...)h = plot(...)hlines = plot(' 阅读全文
posted @ 2020-06-20 03:50 nana2019 阅读(2361) 评论(0) 推荐(0)
摘要: 1.tabulate() 求矩阵中各个不同的值在矩阵中出现的次数. >> a = [2 4 6 8;3 5 6 3; 9 8 5 3; 7 6 4 0]; >> a a = 2 4 6 8 3 5 6 3 9 8 5 3 7 6 4 0 >> aa = tabulate(a(:)) aa = 0 1 阅读全文
posted @ 2020-06-20 03:47 nana2019 阅读(54) 评论(0) 推荐(0)
摘要: use the mount command. # Open a command-line terminal (select Applications > Accessories > Terminal), and then type the following command to mount /de 阅读全文
posted @ 2020-06-20 03:33 nana2019 阅读(67) 评论(0) 推荐(0)
摘要: Python supports five basic numerical types, three of which are integer types. ● int (signed integers) long (long integers) bool (Boolean values) ● flo 阅读全文
posted @ 2020-06-20 03:28 nana2019 阅读(38) 评论(0) 推荐(0)