/** Copyright (c) 2012, 烟台大学计算机学院 * All rights reserved. * 作 者:张浩 * 完毕日期:2012 年11月4 日 * 版 本 号:v1.0 * 输入描写叙述:表格输入 * 问题描写叙述: 略* 程序输出:略* 问题分析: 首先是明确英...
分类:
其他好文 时间:
2014-07-08 23:07:31
阅读次数:
295
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=12811384599010340All in AllAcceptedC++0.0262014-07...
分类:
其他好文 时间:
2014-07-08 21:50:11
阅读次数:
230
这
clc;
clear all;
Image=imread('9.jpg');
Image=double(Image);
Image_new=Image;
Image_new(:,:,1)=0.393*Image(:,:,1)+0.769*Image(:,:,2)+0.189*Image(:,:,3);
Image_new(:,:,2)=0.349*Image(:,...
分类:
其他好文 时间:
2014-07-08 20:04:34
阅读次数:
235
show git show in Vim
//show files for a commit in vim tabs
vim -pn $(git show --pretty="format:" --name-only SHAxxxx )...
分类:
其他好文 时间:
2014-07-08 19:54:35
阅读次数:
199
Problem Description:
Given an array S of n integers, are there elements a, b, c in S such that a + b + c =
0? Find all unique triplets in the array which gives the sum of zero.
Note:
El...
分类:
其他好文 时间:
2014-07-08 18:31:01
阅读次数:
159
str_replace
(PHP 4, PHP 5)
str_replace — Replace all occurrences of the search string with the replacement string
Description
mixed str_replace ( mixed $search , mixed $replace , mixed $...
分类:
Web程序 时间:
2014-07-08 17:09:58
阅读次数:
302
下面的matlab程序分别使用周期图法、相关函数法以及AR谱方法计算信号的功率谱。% power spectrum estimated
clear all;
clc;
close all;
Fs=1000; % 采样频率
nfft = 1024; % fft计算点数
%产生含有噪声的序列
n=0:1/Fs:1;
xn=cos(2*pi*100*n)+3*cos(2*pi*200...
分类:
其他好文 时间:
2014-07-08 16:23:01
阅读次数:
277
感觉眨眨眼就要大四了...
大学很快就要过去了。
三年,感概良多。
努力,终会有收获。
终于忙完了各种课设各种考试各种论文。
后天要去考驾照中的科目二。
然后回家休息十来天。
然后出来继续奋斗。
all
is well.
-------致即将大四的自己!...
分类:
其他好文 时间:
2014-07-08 15:19:24
阅读次数:
157
主要关注红色标记语句即可。
The include (or require) statement takes all the text/code/markup that exists in the specified file and copies it into the file that uses the include statement.
Including files is ...
分类:
Web程序 时间:
2014-07-08 12:53:30
阅读次数:
213
Implement atoi to convert a string to an integer.
Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input ca...
分类:
其他好文 时间:
2014-07-08 12:52:05
阅读次数:
200