码迷,mamicode.com
首页 >  
搜索关键字:scientific    ( 199个结果
URAL 1203 Scientific Conference(贪心 || DP)
Scientific Conference 之前一直在刷计算几何,邀请赛连计算几何的毛都买见着,暑假这一段时间就做多校,补多校的题目,刷一下一直薄弱的DP。 题意:给你N个报告会的开始时间跟结束时间,问你做多可以听几场报告会。要求报告会之间至少间隔为1。 思路:其实是个活动安排问题,可以用贪心也可以用DP,贪心写起来会比较简单一些,因为练习DP...
分类:其他好文   时间:2014-07-23 20:57:15    阅读次数:161
动态链接库找不到 : error while loading shared libraries: libgsl.so.0: cannot open shared object file: No such file or directory
问题:运行gsl(GNU scientific Library)的函数库,用gcc erf.c -I/usr/local/include -L/usr/local/lib64 -L/usr/local/lib -g -Wall --std=gnu99 -lgsl -lgslcblas -o m.o编...
分类:其他好文   时间:2014-07-22 22:54:54    阅读次数:591
setw()函数使用
在C++中,setw(int n)用来控制输出间隔。例如:cout #include int main() { cout<<12345.0<<endl;//12345 cout<<setiosflags(ios::scientific)<<12345.0<<endl;//1.234500e+004....
分类:其他好文   时间:2014-07-07 00:03:20    阅读次数:537
Google's Hybrid Approach to Research
文档地址:戳我总结: (i) aims to generate scientific and engineering advances in fields of import to Google, (目标) (ii) does so in a way that tends to factorize....
分类:移动开发   时间:2014-07-05 17:37:34    阅读次数:391
Pass command line arguments to Gnuplot script
Gnuplot is a light-weight and easy to use scientific plotting tool. Its has enough functionalities to deal with most of my demands on visualizing expe...
分类:其他好文   时间:2014-06-24 14:07:48    阅读次数:236
Python科学计算(一)
一、准备教材:《python科学计算》 作者: 张若愚  出版社: 清华大学出版社 出版年: 2012-1 页数: 621 定价: 98.00元 装帧: 平装 ISBN: 9787302273608 二、 安装 Python(x,y)  Python(x,y) is a free scientific and engineering development softwar...
分类:编程语言   时间:2014-06-22 22:12:47    阅读次数:214
C++其他几个常见操作程序
在上文介绍了setw()操作程序,下面介绍其他几个,setprecision()指定用多少位数来表示浮点数,fixed表示以固定点表示法输出浮点数值,即不带指数。scientific以科学表示法输出浮点数值,即尾数加指数的方式。而默认的是根据要显示的数值,选择fixed或者scientific表示法。示例如下:   #include #include using std::cout; ...
分类:编程语言   时间:2014-06-10 07:16:10    阅读次数:343
在Linux下安装C/C++开发工具包的最佳方式
如果你使用的是 Fedora, Red Hat, CentOS, 或者 Scientific Linux 系统,使用下面的命令安装GNU的C/C++开发包和编译器。 # yum groupinstall 'Development Tools'          如果你使用的是Debian 或者 UbuntuLinux系统,你可以使用下面的这个命令来安装C/C++编译器。 #sudo ...
分类:编程语言   时间:2014-06-07 01:56:20    阅读次数:302
windows下的gsl(科学计算库)配置
一、GSL介绍GNU科学计算函数库GSL(GNU Scientific Library)是一个强大的C/C++数值计算函数库,它是一个自由软件,是GNU项目软件的一个部分,遵循GPL协议。GSL是一个为C和C++程序员提供的科学数值运算库。该科学计算库异常强大,函数库提供了大量的数值计算程序,如随机...
分类:Windows程序   时间:2014-05-09 15:34:56    阅读次数:720
199条   上一页 1 ... 18 19 20
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!