美文网首页
5月21日 周日 丁酉 乙巳 戊申

5月21日 周日 丁酉 乙巳 戊申

作者: 天蓬月 | 来源:发表于2017-05-22 00:36 被阅读0次

标签 : 北京、睛

一、MATLAB

1.1 floor函数

Y = floor(X)
rounds each element of X to the nearest integer less than or equal to that element

1.2 矩阵

x=house

house 函数

function X = house
% HOUSE  Outline of a house.
% H = house;
% dot2dot(H)
% wiggle(H)
&X = [ -6  -6  -7   0   7   6   6  -3  -3   0   0
      -7   2   1   8   1   2  -7  -7  -2  -2  -7 ];
dot2dot(x)

dot2dot 函数

function dot2dot(X)
% DOT2DOT  Connect the points from a 2-by-n matrix.
X(:,end+1) = X(:,1);
plot(X(1,:),X(2,:),'.-','markersize',18,'linewidth',2)
axis(10*[-1 1 -1 1])
axis square

二、linux 安装chrome

  • 下载chrome
 wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
  • 安装chrome
sudo dpkg -i google-chrome-stable_current_amd64.deb
  • 如有错误
sudo apt-get -f install

相关文章

网友评论

      本文标题:5月21日 周日 丁酉 乙巳 戊申

      本文链接:https://www.haomeiwen.com/subject/metbxxtx.html