码迷,mamicode.com
首页 >  
搜索关键字:figure    ( 2425个结果
Debugging Segmentation Fault
We are going to use gdb to figure out why the following program causes a segmentation fault. The program is meant to read in a line of text from the u...
分类:其他好文   时间:2015-01-22 14:49:41    阅读次数:133
NYOJ 16 The Triangle
The Triangle时间限制:1000 ms | 内存限制:65535 KB 难度:4描述73 88 1 02 7 4 44 5 2 6 5(Figure 1)Figure 1 shows a number triangle. Write a program that calculates th...
分类:其他好文   时间:2015-01-16 20:40:07    阅读次数:141
latex 中图片或者表格跨两栏居中的方法
对于表格,在只需按照下面语句编写即可:\begin{table*}[htbp]%htbp为位置控制\centering其他内容\end{table*}对于图片同样的方法,即:\begin{figure*}\centering图片内容,同时这里可以包含多张图片,排版的时候将会跨两栏横排\end{figure}
分类:其他好文   时间:2015-01-16 17:06:26    阅读次数:649
Tex使用
表格标题改变成中文的"表":\renewcommand{\tablename}{表}同样图片的Figure改为中文的“图”:\renewcommand{\figurename}{图}
分类:其他好文   时间:2015-01-14 22:44:13    阅读次数:156
安卓CTS官方文档之兼容性测试套件简介
官方英文文档原文:https://source.android.com/compatibility/cts-intro.html Compatibility Test Suite  兼容性测试套件 How does the CTS work? CTS是如何工作的? Figure 1. How to use CTS 图1. CTS使用流程...
分类:移动开发   时间:2015-01-12 16:39:01    阅读次数:276
[RocketFuel]Racer Rater
Suppose you are a fan of auto-racing and want to figure out which drivers are likely to perform well in an upcoming race. Luckily you have access to a...
分类:其他好文   时间:2015-01-11 06:11:43    阅读次数:348
MATLAB GUI界面总结
创建Matlab GUI界面通常有两种方式:    1,使用 .m 文件直接动态添加控件      2.  使用 GUIDE 快速的生成GUI界面 显然第二种可视化编辑方法算更适合写大型程序。 一:创建GUI 1.在 .m文件中动态添加 例如 h_main=figure(‘name’,‘a demo of gui design’,‘menubar’,...
分类:其他好文   时间:2015-01-10 16:43:50    阅读次数:228
Matlab在图像中画标记框
Matlab在图像中画标记框 img = imread('M1.JPG'); figure; hold on; imshow(img); hold off; px = 1200; py = 2000; step = 200; x1 = px - step; x...
分类:其他好文   时间:2015-01-07 18:37:46    阅读次数:764
python 的 matplotlib画图 画曲线图
#encoding:utf-8 #1.绘制曲线: import numpy as np import matplotlib.pyplot as plt x = np.linspace(0, 10, 1000) y = np.sin(x) plt.figure(figsize=(8,4)) plt.plot(x,y,label="$sin(x)$",color="red",linewidth=2)...
分类:编程语言   时间:2015-01-04 17:13:34    阅读次数:616
matplotlib 画图 条形图
#绘制条形图 import numpy as np import matplotlib.pyplot as plt y=[] plt.figure(1) width=1 for i in range(len(y)): plt.figure(1) plt.bar(i*width,y[i],width) plt.xlabel("X") plt.ylabel("Y") plt.show(...
分类:其他好文   时间:2015-01-04 17:13:16    阅读次数:169
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!