舒服招牌

文章
7
资源
0
加入时间
2年10月21天

mysql链接liunx远程服务器

Navicat 连接虚拟机处理:1、 关闭linux中centos7的防火墙systemctl stop firewalld.service #停止firewallsystemctl disable firewalld.service #禁止firewall开机启动2、 首先确保 linux服务上mysql 的3306端口是对外开放的[root@localhostTEST ~]# cd /etc/sysconfig/[root@localhostTEST s

MATLAB随机数生成

转载 新浪博客 http://blog.sina.com.cn/u/2121533923 (一)Matlab内部函数a. 基本随机数Matlab中有两个最基本生成随机数的函数。1.rand()生成(0,1)区间上均匀分布的随机变量。基本语法:rand([M,N,P ...])生成排列成M*N*P... 多维向量的随机数。如果只写M,则生成M*M矩阵;如果参数为[M,N]...