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
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
对于表格,在只需按照下面语句编写即可:\begin{table*}[htbp]%htbp为位置控制\centering其他内容\end{table*}对于图片同样的方法,即:\begin{figure*}\centering图片内容,同时这里可以包含多张图片,排版的时候将会跨两栏横排\end{figure}
分类:
其他好文 时间:
2015-01-16 17:06:26
阅读次数:
649
表格标题改变成中文的"表":\renewcommand{\tablename}{表}同样图片的Figure改为中文的“图”:\renewcommand{\figurename}{图}
分类:
其他好文 时间:
2015-01-14 22:44:13
阅读次数:
156
官方英文文档原文: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
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界面通常有两种方式:
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在图像中画标记框 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
#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
#绘制条形图
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