2014年(13)
发布时间:2014-08-09 17:20:59
#!/usr/bin/env python # --*-- coding:utf-8 --*-- import matplotlib.pyplot as plt import numpy as np t=[i/np.pi for i in np.arange(0,360)] x=2*np.cos(t) y=np.sin(t) plt.plot(x,y) plt.show() ......【阅读全文】
发布时间:2014-05-14 15:26:52
#!/usr/bin/perluse strict;my %hash;my @array = (1..10,5,20,2,3,4,5,5);#grep 保存符合条件的元素@array = grep { ++$hash{$_} < 2 } @array;print join(" ",@array);print "\n";......【阅读全文】
发布时间:2014-03-19 14:32:34
#!/usr/bin/perl -w use strict;use File::Find;my $path = 'G:\生物\调控粒径的基因\调控粒径的基因\基因';#路径,在同一目录下的路径sub chaxun { if ( -f $File::Fin.........【阅读全文】