tongqingliu

保持学习的态度

2017年3月24日 #

MATLAB拟合正态分布

摘要: 得到对应的参数为 均方误差为 阅读全文

posted @ 2017-03-24 22:26 tongqingliu 阅读(26625) 评论(3) 推荐(0) 编辑

Matlab文件操作

摘要: ```matlab clear;clc; A = magic(4); fid = fopen('test.txt','wt'); for i = 1:size(A,1) for j = 1:size(A,2) fprintf(fid,'%d\t',A(i,j)); end fprintf(fid,'\n'); end clear; A = importda... 阅读全文

posted @ 2017-03-24 22:13 tongqingliu 阅读(163) 评论(0) 推荐(0) 编辑

Ubuntu安装spyder并添加快捷方式

摘要: Ubuntu安装spyder并添加快捷方式 之前通过 ~~sudo apt install spyder~~ ~~sudo apt install spyder3~~ 安装spyder,但是这样有个坏处,编译器只能用系统自带的python。 终端输入spyder3,就可以打开spyder了。 但是, 阅读全文

posted @ 2017-03-24 15:51 tongqingliu 阅读(3568) 评论(0) 推荐(0) 编辑

导航