文档库 最新最全的文档下载
当前位置:文档库 › image classification with ant colony based support vector machine

image classification with ant colony based support vector machine

image classification with ant colony based support vector machine
image classification with ant colony based support vector machine

Image Classification with Ant Colony Based Support Vector Machine

ZHAO Baoyong1,2, QI Yingjian3

1. School of Automation & Electrical Engineering, University of Science and Technology Beijing, Beijing 100083, P. R. China

2. Key Laboratory of Advanced Control of Iron and Steel Process, University of Science and Technology Beijing,

Beijing 100083, P.R. China.

E-mail: zbyfirst@https://www.wendangku.net/doc/0c13294029.html,

3. Science School, Communication University of China, Beijing 100024, P.R. China

E-mail: qiyingjian@https://www.wendangku.net/doc/0c13294029.html,

Abstract: Natural image classification is an important task. SIFT descriptors and bag-of-visterms (BOV) method have achieved very good results based on local image representation. Many studies use the support vector machine to classify and identify the image category after finished representation of the image. However, due to support vector machine (SVM) its own characteristics, it shows inflexible and less slow convergence rate. The selection of parameters influenced the results for the algorithm seriously. Therefore, this paper try to improve the image recognition performance by support vector machine algorithm based on ant colony algorithm. The method adopt dense SIFT descriptors and BOV method to obtain the image representation. In recognition step, we use the support vector machine as a classifier but ant colony optimization method is used to selects kernel function parameter and soft margin constant C penalty parameter. Experiment results show that this solution determined the parameter automatically without trial and error and improved performance on natural image classification tasks. Key Words: Scale Invariance Feature Transform, Bag-of-Visterms, Colony Algorithm, Support Vector Machine

1Introduction

Classification of natural image automatically is one of the significant research fields in computer vision. Effective image description is the base of the correct image classification. And then how to discover the objects and use the objects distribution to perform scene classification is regarded as in an unsupervised manner. Currently, the method based on semantic analysis represents the image mainly through the use of intermediate semantic (or Topic) [1, 2]. Each image can be expressed by a number of Topics which based on the probability distribution of the so called visual words (visual visterms).

Recently, Bag-of-visterms (BOV) becomes an important image content representation method [3]. Imitation the idea of text classification, the semantic information is exhibition of the words distribution. The image can be seen as composed by the visual words document, and then the visual words used to classify the image. However, BOV's problem is that the image is difficult to define specific meaningful visual words, because it needs to transform the image characteristics into the visual terms effectively. A lot of work in this area has done: Some used the method that found the dense sampling local area and extracted the feature vector in the region to express the image content, thus greatly improving the performance of the visual vocabulary [4, 5]. Some detected the interest image region, and then extracted the SIFT descriptor in the region as a feature vector [6, 7]. Clustering and classification of vocabulary commonly used k-means clustering method, but improved algorithm combined with other optimized cluster method to achieve improvements on the classifier has continued [8-10].

Support Vector Machine (SVM) is a new learning machine developed on the basis of structural risk *This work is supported by the project from Beijing Key Discipline Development Program (No. XK100080537) minimization principle [11]. It aimed at finding compromise between complexity of model and the best learning ability in the based of limited sample information for good generalization ability. Support vector machine is based on solid statistical learning theory and have theoretical completeness, but there are still some problems on the application, one of the typical problems is the choice of model parameters. There is no uniform model selection standards and theory. Penalty factor C and kernel function parameters have a major impact on the classification performance in specific applications [12, 13]. Ant colony algorithm is a new heuristic evolutionary algorithm. It has a strong ability to find better solutions, better robustness, information positive feedback, parallel distributed computing and easy to combine with other heuristic methods [14]. It is a good idea to use ant colony algorithm in support vector machine which provides powerful method for SVM parameter selection problem.

This paper gives a new method that uses the bag of word method in creating an image described, the neighborhood features of the image is described by using 128-dimensional sift descriptor, and then using two-level vector quantization to build vocabulary, while getting semantic description of the image by the pyramid dense sampling. In the image recognition stage, SVM classifier [15] is used in recognition and the parameters of SVM is optimized by using ant colony algorithm [16], and test it in the image database. Experimental results show that the method can automatically determine the SVM parameters and can better improve the performance of the natural image classification.

Proceedings of the 30th Chinese Control Conference July 22-24, 2011, Yantai, China

2 Image Classification Mod el Based on Bag-of

-Visterms

2.1 SIFT Descriptor and BOV Model

Scale Invariant Feature Transform (SIFT) [7] is proposed by David G. Lowe to generate the set of image features. SIFT algorithm extracts the independent eigenvectors for the scale zooming, rotating, brightness variations from the image. The generation algorithm of SIFT feature vector about an image includes a total of Step four.

The first step is the preliminary identification of key positions and the scale by using the scale space extreme detection. After that the critical point location, the low contrast key points and the instability edge response point are removed in order to increase the match steady and increase resistance to noise. The third step is that the direction parameter of each key point is specified by using the gradient direction distribution features of the key point neighboring pixel. At last SIFT feature vector are generated. In the actual calculation process, in order to enhance the robustness of matching, Lowe recommends each key points is described by using 4 × 4 with a total of 16 seed points, such a critical point can be generated 128 data, which eventually form 128-dimensional SIFT feature vector. SIFT feature vector has removed influence from scale change, rotation and other geometric distortion factors. It provides robustness to image clutter, partial visibility, and occlusion. They were designed to have high degree of invariance, and are robust to changes in viewpoint and lighting conditions. Hence it is used as an important descriptor since it is proposed.

There are several different steps in construction feature vector h from an image I by the bag-of-visterms (BOV) [17]. (1) Extract sifts descriptor. We extract the sift descriptor from the selected key points of the original image. :NKXK GXK Z]U SKZNUJY LUX QK_ VUOTZY YGSVROTM OT MKTKXGR . One is the sparse sampling method and the other is the dense sampling method. After key point selection, we can calculate the sift descriptor of each point shows in last section.

(2) Construct vocabulary model. Given an image, we obtain a set of local interest point descriptors. We then quantize each local descriptor into one of a discrete set V of visterms v according to a nearest neighbor rule:

s ()(,)(,){1,,}i i j j v Q s v dist s v dist s v N d 6"Where v N denotes the size of the visterms set. We will call vocabulary the set V of all visterms. The vocabulary is constructed using K-means.

(3) Construct bag-of-visterms. The standard BOV representation of the image is constructed from the local interest point descriptors according to:

1()[(),,()]v

v

v

N h I h I h I " With (,,)()v

i i n I v h I Q .

Where (,,)i h I v Q denotes the number of occurrences of visterms i v from vocabulary V in image I . This is the single-level BOV representation of the image. It describes each image using the occurrence information of each

visterms in that image. This vector-space representation of an image contains no information about spatial relationship between visterms.

In brief, we can illustrate the whole process by Figure 1. At first, key points (selected or computed) are automatically detected in the image, then local descriptors are computed over those regions as show in (a). All the descriptors are quantized into visterms as (b), and all occurrences of each specific visterms of the vocabulary in the image are counted to build the BOV representation of the image as (c). 2.2 Support Vector Machine Classifier

SVM methods have proven to be successful in solving machine learning problems in computer vision and text categorization applications, especially those involving large dimensional input spaces. Standard SVM are binary classifiers, which learn a decision function through margin optimization, such that function is large (and positive) for any input which belongs to the target class, and negative otherwise.

Suppose that linear separable sample dataset is (,)i i x y ,

1,2,,,,{1,1}n i n x R y " , where {+1,-1} is class label. The general form of linear discriminative function in n-dimension space is defined as ()g x w x b <. Regulate the function to satisfy ()1g x t so that the minimum class interval equal to 2/w . So maximum of the interval equal to minimum the w and for classify all the sample correctly it should satisfy [()]10,1,2,,i i y w x b i n t <". The super surface is the optimized classification surface. We can solve the problem under the constrained condition by the Lagrange method. The relaxation is added to the condition item for nonlinearity problem and then we can get 01n

i i i i w y x O |and the optimized classifications function

as sgn{()}i i i f y x x b O |<. According to the functional

theory the inner product of feature space ()()i x x ))

3 Improved Image Sampling and Classification

Method

We adopt some improved methods in order to accomplish the natural image classification task. We combined three level pyramid dense sampling and the two-level

quantization method into the image description and then construct the bag-of-visterms representation. At last we employee the ant colony optimization based support vector machine to classify the images in the database.

In the dense sampling step, we obey the following rule in an image. We construct a sequence of grids at resolutions 0,…,L, such that the grid at level l has 2l cells along each dimension. If dimension is equal to 2, then the total cells are

22

l

D . Let X and Y are two sets of vectors in a

2-dimension feature space. Let l

X H and l

Y H denote the histograms of X and Y at this resolution, so that ()l

X H i and

()l

Y H i are the numbers of points from X and Y that fall into the ith cell of the grid. It reduces to a standard bag of features when L = 0. We assumed that M denotes the number of cluster center of discrete types for all feature vectors. It is report [1] that the good performance can be obtained just at level 2 in the situation of 200M and 400M . This SUZO\GZKY us to select the level 2 as the decomposition level in our work. We study the experiment as follow and decide the suitable style is MLV1

that combine vocabulary size 100M with 200M . It

gets better performance and increase rate in limited time.

SVM provide the method to search the optimism surface

of the train samples. The basis idea is to find a nonlinear map function that reflects the input data into a high dimension inner multiple space which is accomplished by the kernel function. The main problem is to select the kernel function and adjust the parameters. The two kernel parameter and penalty factor played an important role for improving the model performance. Ant colony method is a good optimization method. It has the advantage of high search efficiency and high adaptable ability without computing the partial derivatives of objective function, decreasing the probability to fall into the local minimum. So we select it as a solution to search the better parameters. The ant is set as a point of the two parameter spaces. We set the following step to realize our idea. At first we support to search in a predefined scope of two parameters with settled distance by m ants. Each ants stay at one point stands for the specific parameter value. They will be calculate the objective function value at the given initial pheromone strength and the increment value. And then each ant move in one or other area by the transfer probability, compute the value of object function again and record the best answer. At last renew the pheromone strength and go into a new round until the precision or the loop count get to the request. If some pheromone becomes more and more strong we will reduce the distance and fine a finest value in a small scope.

4 Experiments and Results

We use the thirteen scene categories dataset introduced by Fei-Fei [18]. This data set contains a total of 3859 images of approx. 60000 pixel resolutions, varying in exact size and XY ratio. The example is as Figure 1.

We get the follow classification performance shows in Table 1. There are really some improvements in the result. But the whole recognition rate is not so satisfied compared

with the best report. We will try to find some other method to improve it.

(a)

(b)

(c) (d) Fig. 1: Example of the dataset. (a)mountain. (b)coast. (c)forest. (d)highway.

Table 1: classification performance in dataset Vocabulary size SVM (%) Ant-SVM (%)

100 65.1 68.9 200 69.5 72.1 300 70.7 72.3 1000 73.3 78.1 100+200 74.2 78.7

Conclusion

The image classification problem based on the local image representation and improved support vector machine method is studied here. In the recent years, SIFT descriptors and the bag-of-Visterms model has been shown to be a good base for image representation. =K YKRKIZ 9/,: GTJ (5< GY ZNK XKVXKYKTZGZOUT SKZNUJ UL ZNK OSGMK?Y RUIGR LKGZ[XK The classification method is very important for the final performance. On the basis of popular support vector machine, the penalty factor C and kernel function parameters are estimated by the ant colony optimization method. We give the main step of our method. Experiments done on the thirteen classes dataset shows that this method gets improved result. Other discusses of this topic and more experiment will be done next.

References

[1] S. Lazebnik and C. Schmid, and J. Ponce. Beyond bags of

features: Spatial pyramid matching for recognizing natural scene categories. In Proc. CVPR , 2006(2): 2169–2178.

[2] L. Caoand L .FeiFei. Spatially coherent latent topic model for

concurrent object segmentation and classification. In Proc. ICCV , 2007:1–8.

[3] C. Dance, G. Csurka, C. Bray and L. Fan. Visual

categorization with bags of keypoints .In Proc . ECCV , 2004:1–22.

[4] F. Jurie and B. Triggs, Creating efficient codebooks for

visual recognition, In Proc. ICCV. 2005(1):604–610.

[5] E. Nowak, F. Jurie, and B. Triggs, Sampling strategies for

bag-of-features image classification, In Proc. ECCV, 2006(4): 490–503.

[6]J. Sivic and A. Zisserman, Video google: A text retrieval

approach to object matching in videos, In Proc ICCV,

2003:1470.

[7] D. G. Lowe, Distinctive image features from scale-invariant

keypoints, Int. J. Comput. Vision, 2004, 60(2):91–110.

[8]Angiulli, F. Astorino, A. Scaling Up Support Vector

Machines Using Nearest Neighbor Condensation, IEEE

Transactions on Neural Networks , 21(2) : 351– 357,2010 [9] Grinblat, G. L.; Uzal, L. C.; Ceccatto, H. A.; Granitto, P. M.,

Solving Nonstationary Classification Problems With Coupled Support Vector Machines. IEEE Transactions on

Neural Networks, ,22(1): 37–51 ,2011

[10]Anna Bosch and Andrew Zisserman. Scene Classification

Using a Hybrid Generative/Discriminative Approach. In

IEEE Trans. PAMI, 30( 4)717:727, 2008.

[11]VapNik V N. An overview of statistical learning theory.

IEEE Trans on Neural Networks, 10 (5): 88– 999, 1999. [12]Drucker H, Wu D, Vipnik V N. Support vector machines for

spam categorization. IEEE Transactions on Neural Networks,

10 (5): 1048–1054, 1999.

[13]Keerthi S S, L in C J. Asymp totic behaviors of support vector

machines with Gaussian kernel. Neural Computation, 15 (7):

1667–1689, 2003.

[14]Stützle T, Hoos H. The MAX - M IN ant system and local

search for the traveling salesman p roblem. In Proc.

ICEC-EPS’97, 1997: 309–314.

[15] C. J. C. Burges. A tutorial on support vector machines for

pattern recognition. Data Mining and Knowledge Discovery,

2(2):121–167, 1998

[16]Dorigo M,Maniezzo V, Colorni A. Ant System: Op

timization by a Colony of Coorperating Agents, IEEE

Transactions on Systems,Man, and Cybernetics Part B, 26

(1) : 29–41, 1996.

[17]Pedro Quelhas? Jean-Marc Odobez?Multi-level local

descriptor quantization for Bag-of-Visterms image representation, In Proc. CIVR07?2007:242–249

[18]L. Fei-Fei and P. Perona. A Bayesian hierarchical model for

learning natural scene categories. In In Proceedings of IEEE

Conference in Computer Vision and Pattern Recognition

(CVPR), 2005.

2014·江西(文科数学) 精品完美解析版

第 1 页 共 8 页 2014·江西卷(文科数学) 1.[2014·江西卷] 若复数z 满足z (1+i)=2i(i 为虚数单位),则|z |=( ) A .1 B .2 C. 2 D. 3 1.C [解析] 因为z =2i 1+i =2i (1-i )(1+i )(1-i ) =1+i ,所以|z |=|1+i|=12+12= 2. 2.[2014·江西卷] 设全集为R ,集合A ={x |x 2-9<0},B ={x |-1cb 2”的充要条件是“a >c ” C .命题“对任意x ∈R ,有x 2≥0”的否定是“存在x ∈R ,有x 2≥0” D .l 是一条直线,α,β是两个不同的平面,若l ⊥α,l ⊥β,则α∥β 6.D [解析] 对于选项A ,a >0,且b 2-4ac ≤0时,才可得到ax 2+bx +c ≥0成立,所以A 错. 对于选项B ,a >c ,且b ≠0时,才可得到ab 2>cb 2成立,所以B 错. 对于选项C ,命题的否定为“存在x ∈R ,有x 2<0”, 所以C 错. 对于选项D ,垂直于同一条直线的两个平面相互平行,所以D 正确. 7.[2014·江西卷] 某人研究中学生的性别与成绩、视力、智商、阅读量这4个变量的关系,随机抽查了52名中学生,得到统计数据如表1至表4,则与性别有关联的可能性最大的变量是( ) 表1 表2

河北公务员考试行测真题+答案解析(完美打印版)

2017年河北公务员考试行测真题+答案解析 (完美打印版) 第一部分言语理解与表达 1、维生素C又叫抗坏血酸,是一种水溶性维生素,溶液显酸性。医学研究表明,人类在不良情绪下,会产生过多氧自由基,损伤细胞和组织,导致皮肤失去弹性,出现皱纹。而维生素C与氧自由基发生反应,从而清除自由基,可有效避免肌肤老化。那么,维生素C又是如何美白皮肤的呢?原来,皮肤的颜色主要取决于肌肤中黑色素的含量。抑制酪氨酸酶的合成是美白的关键之一,而维生素C能抑制此酶的活性,阻断黑色素生成,且可将已形成的黑色素还原成无色的黑色素前质。 下列说法与原文不符的是: A维生素C能够避免肌肤老化B酪氨酸酶合成可以美白肌扶 C维生素C能阻断黑色素生成D不良情绪容易使人出现皱纹 2、拿破仑在法国的崛起,极大地震撼了欧洲各国的王室。他们视法国大革命为洪水猛兽,不屑与拿破仑这样行伍出身的政治暴发户对话。1800年英、俄、奥等国组成的第二次反法同盟与拿破仑决战。拿破仑亲率两万兵马,出其不意地翻越了法国与意大利交界的羊肠小道,进入意大利境内,击败了奥军。同时,拿破仑又向沙皇保罗一世献殷勤,使他退出了反法同盟,最终使英国陷入孤立,不得不与法国签订《亚眠和约》,承认拿破仑在欧洲占领的疆土。 这段文字意在强调: A欧洲各国的王室非常害怕拿破仑在法国的崛起 B拿破仑是个具有非凡军事才能与外交手腕的人 C英、俄、奥等国最终承认拿破仑在欧洲占领的疆土 D拿破仑用不战而屈人之兵的战法,击败第二次反法同盟 3、我国各地的雾霾,从总的方面来说是各种来源污染排放物经过一系列的化学和物理过程的产物,这里既有一次排放,还有二次化学转化和物理过程。从南到北情况十分复杂,当下的普遍情况既不同于当年伦敦的情况,也不同于洛杉矶的情况。曾有学者讲北京的情况属于“伦敦型”和“洛杉矶型”的复合型。实际上事情绝非是一个“复合型”可以概括。还让人担心的是:眼下从上到下,各省各地都认为燃煤是问题的根子,似乎实现城市燃气化以后,问题就可以大大解决了,其实我们的一次排放物或者说二次过程的产生物质决不只是一个二氧化硫,或者说再加上一个氮氧化合物那么简单。 对这段文字概括最恰当的是: A雾霾形成的主要特点B雾霾形成的原因复杂 C雾霾类型具有多样性D雾霾危害具有普遍性 4、自然界产生的电磁辐射,又称为环境电磁波的本底辐射。本底辐射对人类生存环境,无不良影响。“阳光也是一种电磁辐射,亿万年来我们正是依靠阳光的照射才生存到

注册电气工程师基础考试真题完美解析版

2010年度全国勘察设计注册电气工程师 执业资格考试试卷 公共基础考试

一、单项选择题(共120题,每题1分。每题的备选项中只有一个最符合题意。) 1. 设直线方程为?? ? ??+-=-=+=33221 t z t y t x ,则该直线:( )。 (A )过点(-1,2,-3),方向向量为k j i 32-+ (B )过点(-1,2,-3),方向向量为k j i 32+-- (C )过点(1,2,-3),方向向量为k j i 32+- (D )过点(1,-2,3),方向向量为k j i 32+-- 答案:D 解析过程:将直线的方程化为对称式得3 3 2211--=+=-z y x ,直线过点(1,-2,3),方向向量为k j i 32-+或k j i 32+--。 主要考点:① 直线方程的参数式方程; ② 直线的方向向量反向后还是方向向量。 2. 设γβα,,都是非零向量,若γαβα?=?,则:( )。 (A )γβ= (B )βα//且γα// (C )()γβα-// (D )()γβα-⊥ 答案:C 解析过程:由γαβα?=?,有0=?-?γαβα,提公因子得()0=-?γβα,由于两向量平行的充分必要条件是向量积为零,所以()γβα-//。 3. 设()1 122+-=x x e e x f ,则:( )。 (A )()x f 为偶函数,值域为()11, - (B )()x f 为奇函数,值域为()0,∞- (C )()x f 为奇函数,值域为()11,- (D )()x f 为奇函数,值域为()∞+,0 答案:C

解析过程:因为()()x f e e e e e e e e e e x f x x x x x x x x x x -=+-=+- =+-=---2222222222111111,所以函数是奇函数; ()1lim -=-∞ →x f x ,()1lim =+∞ →x f x ,值域为()11,-。 4. 下列命题正确的是:( )。 (A )分段函数必存在间断点 (B )单调有界函数无第二类间断点 (C )在开区间内连续,则在该区间必取得最大值和最小值 (D )在闭区间上有间断点的函数一定有界 答案:B 解析:第二类间断点包括无穷间断点和震荡间断点,有界函数不可能有无穷间断点,单调函数不可能有震荡间断点,故单调有界函数无第二类间断点,应选(B )。 分段函数可以不存在间断点,闭区间上连续的函数在该区间必取得最大值和最小值,在闭区间上连续的函数一定有界,故其他三个选项都是错误的。 5. 设函数()?????>+≤+=1 ,1,12 2 x b ax x x x f 可导,则必有:( )。 (A )1=a ,2=b (B )1-=a ,2=b (C )1=a ,0=b (D )1-=a ,0=b 答案:B 解析过程:显然函数()x f 在除1=x 点外处处可导,只要讨论1=x 点则可。由于()x f 在1=x 连续,则()11 2 2 1=+= -x x f ,()b a b ax x f +=+=+1,推出1=+b a 。 ()111lim 1112 lim 122121/ 2/1-=++-=--+=?? ? ??+=→→-x x x x x x f x x ,()a x b a b ax x f x =---+=→+1lim 1/1, 所以1-=a ,2=b 时,()x f 在1=x 可导。

电脑的属性设置 Microsoft Word 文档

当电脑买回家或者请别人安装以后,属性一般别人不会给你去设置的,属性设置有什么用处呢?就是可以让你的电脑在打开以后跑得好一点,符合自己的使用习惯或者是界面漂亮一点.怎么样去设置呢?下面开始说操作过程. 在屏幕空处可以用右键点击,选择属性点击一下,就会出来这样的对话框,同样在控制面板里去点击显示也是进入这个界面.

当打开这个属性以后就有一个对话框出来,在这个界面就有好几个属性项目,[主题--桌面--屏幕保护程序--外观--设置.]下面我就从这个界面开始讲电脑的属性设置. 1.外观,也就是当电脑打开以后的桌面和浏览器的外观,在这个界面你可以选择使用经典.XP界面或者其他界面,当然是界面越简单的时候打开电脑越快,有精美背景的好看,这个是自己的喜好来取舍. 2.桌面,在这个选择里你可以使用WIN自己带的桌面图片和在安装一些软件时候搭给你的桌面图片来装点电脑的桌面,在背景这个框里已经有一些图片提供你去选择,你可以点击名字来看效果

在操作系统里已经自己带了一些桌面图片提供做背景,假如系统里的图片没有你喜欢的,你可以自己把你喜欢的图片来做背景桌面,许多人都是使用有个性的图片来装点自己的电脑屏幕,不过你的图片的尺寸不要小于屏幕尺寸,虽然图片可以在屏幕上使用拉伸来铺满屏幕,效果不会好.操作办法就是去点击浏览,

在你的电脑里找出保存的地方和这个图片,打开, 看看效果怎么样,喜欢了就点击应用

确定以后就保存了这个设置,以后打开电脑就显示你自己设置的这个图片为背景了

当使用了尺寸比较小的图片做背景时候,你不拉伸就是在屏幕的中间一小块,当然这样的小图片也是可以铺满屏幕的,就是使用拉伸,不过拉伸了以后图片的效果家差许多,这就是象素问题了,图片不再是清晰的了,可以看出来颗粒

【同步测试】第9课 赤壁赋(完美答案解析版)

9赤壁赋 一、基础知识 1.下列加点字词的解释有误的一项是() A. 方. 其破荆州(当) 倚.歌而和之(循、依) B. 山川相缪. ,郁乎苍苍(盘绕) 渔樵..于江渚之上(打鱼砍柴) C.正襟危坐..(端坐) 击空明兮溯.流光(逆流而上) D.知不可乎骤得..(突然得到) 下. 江陵,顺流而东也(攻占) 2.下列句子中加点词意义相同的一组是() A .如.怨如慕,如泣如诉 余音袅袅,不绝如. 缕 B .扣舷而歌.之 歌. 曰 C .苏子愀然. 何为其然. 也 D .月出于.东山之上 此非孟德之困于. 周郎者乎 3、下列句子中加点字的意义相同的一组是() 4.下列句子的句式与所给例句相同的一项是( ) 例句:何为其然也? A .此非孟德之困于周郎者乎? B .固一世之雄也,而今安在哉? C .今所谓慧空禅院者,褒之庐冢也 D .纵一苇之所如,凌万顷之茫然 5.下面句子翻译错误的一项是() A .纵一苇之所如,凌万顷之茫然 译文:任凭小船飘去,越过那茫茫的江面。 B .桂棹兮兰桨,击空明兮溯流光 译文:桂树做的棹,木兰做的桨,划破月光下的清波,船在月光浮动的水面上逆流而上。 C .酾酒临江,横槊赋诗,固一世之雄也 译文:向大江喝酒,横执长矛吟诗,本来是一代的英雄啊! D .自其不变者观之,则物与我皆无尽也 译文:从那不变的一面看,那么万物同我们一样都是永恒的,没有尽头。 二、课内阅读 阅读下面的文段,完成后面的问题。 苏子愀然,正襟危坐而问客曰:?何为其然也??客曰:?‘月明星稀,乌鹊南飞’,此非曹孟德之诗乎?西望夏口,东望武昌,山川相缪,郁乎苍苍,此非孟德之困于周郎者乎?方扣弦而歌. 之 望. 美人兮天一方 七月既望. 依歌. 而和之 方其破荆州,下. 江陵 如. 日中天 苏子与客泛舟于赤壁 如.怨,如慕,如泣,如诉 B A C D

能量之源——光与光合作用习题精练完美解析版

@ 能量之源——光与光合作用习题精练 一、选择题 1.玉米叶片的某些细胞中含有一种个体较大但没有基粒的叶绿体。在这种叶绿体中可以发生的化学反应是( ) A.三碳化合物被还原 B.水被分解 C.生成ATP D.合成糖原 1.解析:叶绿体中没有基粒就不能进行光反应,水不能被分解,不能生成ATP,只能进行暗反应。植物细胞中不能合成糖原。答案:A 2.如图表示绿色植物体内某些代谢过程中物质的变化,a、b、c分别表示不同的代谢过程。以下表述正确的是( ) A.水参与c中第二阶段的反应 ) B.b在叶绿体类囊体上进行 C.a中产生的O2参与c的第二阶段 D.X代表的物质从叶绿体的基质移向叶绿体的类囊体 解析:通过题中图解可以判断:a表示光反应过程;b表示暗反应过程,此过程发生在叶绿体基质中;c表示有氧呼吸。水参与有氧呼吸的第二阶段;光反应产生的氧气与有氧呼吸的第三阶段;X代表ATP,ATP应从叶绿体的类囊体移向叶绿体的基质。 答案:A 3.下图表示的是在CO2浓度为1%和%两种情况下,某农作物的光合作用强度与光照强度之间的关系曲线图,据图分析,限制图中Q点的光合作用强度的因素是( ) ①CO2浓度②光照强度 ~ A.① B.② C.①② D.与①和②无关 解析:影响光合作用强度的因素有温度、CO2浓度和光照强度,Q点所在位置,CO2浓度较低(仅为%),光合作用强度低于相同光照强度下CO2浓度为1%的光合作用强度。并且从曲线上分析,随着光照强度的增强,光合作用强度增大,因此,限制Q点的光合作用强度的因素为CO2浓度和光照强度。答案:C 4.为证实叶绿体有放氧功能,可利用含有水绵与好氧细菌的临时装片进行实验,装片需要给予一定的条件,这些条件是( ) A.光照、有空气、临时装片中无NaHCO3稀溶液 B.光照、无空气、临时装片中无NaHCO3稀溶液 C.黑暗、有空气、临时装片中有NaHCO3稀溶液 D.光照、无空气、临时装片中有NaHCO3稀溶液 解析:光合作用需要的条件有光照、CO2、水、叶绿体等;该实验中不能有空气,以避免空气中氧气的干扰;临时装片中需要有NaHCO3稀溶液提供CO2。答案:D $

电脑重装后须做的系统设置

电脑重装后须做的系统设置 一、装完系统后不要立即接入网络(易感染病毒和被入侵): 1、装完系统后(先不要装驱动程序),立即用GHSOT做一个备份件1(用途为:对自己的电脑,可免除重装系统,只要恢复一下即可;对别的电脑可直接作为GhostXP用); 2、安装相关驱动程序,然后做一个备份件2(以备以后系统变慢或出问题时恢复); 3、再装杀毒软件如瑞星(杀毒软件、防火墙、卡卡安全助手),并将其更新后进行详细设置,进行杀毒漏洞检查; 在备份系统前,对源盘和镜像盘进行磁盘碎片整理(以加快备份速度);杀毒软件升级后进行全面杀毒; 4、安装最新版的应用软件,并对所装软件进行设置:Office、搜狗五笔、迅雷、WinRAR、中游、QQ、图片专家Isee、Photoshop、酷石英钟(并设置为随开机启动)、系统垃圾清除软件(快捷方式放桌面上)、飞信等; 1)装迅雷并更新为最新版本(就增加了狗狗搜索,使下载更加方便),并对软件进行设置: A、点/配置/除一般设置外,重点进行“下载安全”的设置,以保证文件下载前后进行查杀病毒; B、注册后(下载更快且可积分),设置下载前对下载件进行病毒扫描、下载后对该软件防毒,再设为自动登录; C、选择“工具→配置→连接”、“连接管理的最大连接数”,将此值可设置得小一些(如100~300之间),这样既使下载的任务很多,迅雷也不会占用所有的带宽。 2)用QQ除聊天外,用QQ可给不在线的好友发邮件;QQ升级到最新版本后,就可用QQ的超大文件传送功能,可上传600M的大程序(注:该上传件只能保存7天); 二、精简系统分区: 1、删除系统分区中的多余的文件夹:打开C:\Windows后, 1)删除备用的dll文件:删掉\WINDOWS\system32\dllcache下文件(减去200多MB); 2)删除驱动备份:C:\Windows\driver cache\i386目录下的Driver.cab文件(省73MB); ★3)删除不用的字体文件:打开C:\WINDOWS\Fonts,删除不用的中文字体,可节约硬盘空间; ★4)删除帮助文件:打开C:\WINDOWS\Help\将其中的文件删除掉(如有的文件夹删不掉,可将其中内容删掉);5)删除不用的输入法: 在C:Windows\Ime文件夹下直接删除chtime(繁体中文)、imjp8_1(日文)、imkr6_1(韩文输入法),可清除占用的88M 的空间(注:要去除对应文件夹的只读属性,有的要打开文件夹后一个个删除); 6)删除预读取文件C:\windows\Prefetch中的全部文件; 7)如果对系统进行过windoes updade升级(或不准备升级系统),则可删除以下文件:c:\windows\先去除文件的隐藏属性,再找到以$NtU... 开头的全部隐藏文件后删除(约有150M左右)。 8)删除C:/WINDOWS/TEMP中的全部文件(为临时文件); 2、删除Wind XP中隐含的组件: XP默认给操作系统安装了一些系统组件(其中有一些组件默认是隐藏的),有些不可能用到的,可以在"添加/删除Windows组件"中将它们卸载。操作方法:用记事本打开\windows\inf\sysoc.inf这个文件,用查找/替换功能把文件中的"hide"字符全部替换为空。这样,就把所有组件的隐藏属性都去掉了,存盘退出后再运行"添加-删除程序",就会看见多出不少你原来看不见的选项,把其中那些你用不到的组件删掉(记住存盘时要保存为sysoc.inf,而不是默认的sysoc.txt),删除如Internat信使服务、传真服务、Windows messenger,码表等,约可腾出近50MB的空间。 3、跳过开机画面(以加快开机速度)两法: 用记事本打开系统盘,展开/BOOT/GHOS/msdos.sys文件,找到options段落,在其的最下一行加入一行logo=0;可去除Windows的系统启动画面; 4、释放系统备份所占用的空间:点“开始”→“运行”,输入“sfc /purgecache”后确定,稍等片刻,可清除系统文件的“system32dllcache”250MB的内容。 5、减少开机磁盘扫描等待时间,开始→运行,键入:chkntfs /t:0 6、取消zipfldr.dll的支持(减少系统资源占用): 点击开始→运行,敲入:“regsvr32 /u zipfldr.dll”(不含双引号),回车确认即可,成功的标志是出现个提示窗口,内容为:zipfldr.dll中的Dll UnrgisterServer。 7、删除剪贴板(可释放不少内存): 点/开始/运行/输入clipbrd,打开剪贴板程序,接着点击‘编辑--删除。’即可释放不少内存。 8、关掉视频预览:运行“REGSVR32 /U SHMEDIA.DLL”;

2014·辽宁(理科数学) 精品完美解析版

2014·辽宁卷(理科数学) 1.[2014·辽宁卷] 已知全集U =R ,A ={x |x ≤0},B ={x |x ≥1},则集合?U (A ∪B )=( ) A .{x |x ≥0} B .{x |x ≤1} C .{x |0≤x ≤1} D .{x |0b >c B .a >c >b C .c >a >b D .c >b >a 3.C [解析] 因为0log 1212 =1,所以c >a >b . 4.[2014·辽宁卷] 已知m ,n 表示两条不同直线,α表示平面.下列说法正确的是( ) A .若m ∥α,n ∥α,则m ∥n B .若m ⊥α,n ?α,则m ⊥n C .若m ⊥α,m ⊥n ,则n ∥α D .若m ∥α,m ⊥n ,则n ⊥α 4.B [解析] B [解析] 由题可知,若m ∥α,n ∥α,则m 与n 平行、相交或异面,所以A 错误;若m ⊥α,n ?α,则m ⊥n ,故B 正确;若m ⊥α,m ⊥n ,则n ∥α或n ?α,故C 错误.若m ∥α,m ⊥n ,则n ∥α或n ⊥α或n 与a 相交,故D 错误. 5.、[2014·辽宁卷] 设a ,b ,c 是非零向量,已知命题p :若a ·b =0,b ·c =0,则a ·c =0,命题q :若a ∥b ,b ∥c ,则a ∥c ,则下列命题中真命题是( ) A .p ∨q B .p ∧q C .(綈p )∧(綈q ) D .p ∨(綈q ) 5.A [解析] 由向量数量积的几何意义可知,命题p 为假命题;命题q 中,当b ≠0时,a ,c 一定共线,故命题q 是真命题.故p ∨q 为真命题. 6.[2014·辽宁卷] 6把椅子摆成一排,3人随机就座,任何两人不相邻的坐法种数为( ) A .144 B .120 C .72 D .24 6.D [解析] 这是一个元素不相邻问题,采用插空法,A 33C 34=24. 7.、[2014·辽宁卷] 某几何体三视图如图1-1所示,则该几何体的体积为( ) A .8-2π B .8-π C .8-π D .8-π

2014·江苏卷精品完美解析版

第 1 页 共 12 页 2014·江苏卷(课标数学) 1.[2014·江苏卷] 已知集合A ={-2,-1,3,4},B ={-1,2,3},则A ∩B =________. 1.{-1,3} [解析] 由题意可得A ∩B ={-1,3}. 2.[2014·江苏卷] 已知复数z =(5-2i)2(i 为虚数单位),则z 的实部为________. 2.21 [解析] 根据复数的乘法运算公式知,z =(5-2i)2=52-2×5×2i +(2i)2=21-20i ,故实部为21,虚部为- 20. 图1-1 3.[2014·江苏卷] 如图1-1所示是一个算法流程图,则输出的n 的值是______. 3.5 [解析] 根据流程图的判断依据,本题看2n >20是否成立.若不成立,则n 从1开始每次增加1;若成立,则输出n 的值.本题经过4次循环,得到25>20成立,则输出的n 的值为5. 4.[2014·江苏卷] 从1,2,3,6这4个数中一次随机地取2个数,则所取2个数的乘积为6的概率是________. 4.13 [解析] 基本事件有(1,2),(1,3)(1,6),(2,3),(2,6),(3,6),共6种情况,乘积为6的是(1,6)和(2,3),则所求事件的概率为13 . 5.、[2014·江苏卷] 已知函数y =cos x 与y =sin(2x +φ)(0≤φ<π),它们的图像有一个横坐标为π3 的交点,则φ的值是________. 5.π6 [解析] 将x =π3分别代入两个函数,得到sin ????2×π3+φ=12 ,解得23π+φ=π6+2k π(k ∈Z )或23π+φ=5π6+2k π(k ∈Z ),化简解得φ=-π2+2k π(k ∈Z )或φ=π6 +2k π(k ∈Z ).又φ∈[0,π),故φ=π6 . 6.[2014·江苏卷] 为了了解一片经济林的生长情况,随机抽测了其中60株树木的底部周长(单位:cm),所得数据均在区间[80,130]上,其频率分布直方图如图1-2所示,则在抽测的60株树木中,有____株树木的底部周长小于100 cm.

01Windows 系统答案

Windows 系统 1.在"任务栏属性"对话框中。"开始菜单程序"选项卡中可以设置的项目有( )。 A: 删除"开始"菜单 B: 自定义桌面背景 C: 清除"文档"菜单的内容 D: 清除"回收站" 2.在Windows 环境下,如果需要共享本地计算机上的文件,必须设置网络连接,允许其它用 户共享计算机。设置"允许其她用户访问我的文件"应在( )中进行。 A: "资源管理器"中"文件"菜单的"共享" B: "我的电脑"中的"文件"菜单的"共享" C: "控制面板"中的"网络"操作 D: "网上邻居"中的"网络"操作 3.剪贴板就是在______中开辟的一个特殊存储区域。 A: 硬盘 B: 外存 C: 内存 D: 窗口 4.在Windows 中设置“共享级访问控制”时,以下_____不属于共享访问类型。 A: 只读 B: 只写 C: 完全 D: 根据密码访问 5.通过设置文件的属性来控制用户对文件的访问,这就是指() A: 系统级安全管理 B: 用户级安全管理 C: 目录级安全管理 D: 文件级安全管理 6.如果窗口中出现了水平滚动条,表明___。 A: 窗口的高度不足 B: 窗口的宽度不足 C: 窗口的高度太大 D: 窗口的宽度太大 7.图标就是Windows 操作系统中的一个重要概念,它表示Windows 的操作对象,它可以指A: 文档或文件夹 B: 应用程序 C: 设备或其它的计算机 D: 以上都正确 8.在Windows 中,"资源管理器"的窗口被分成两部分,其中左部显示的内容就是 A: 当前打开的文件夹的内容 B: 系统的树形文件夹结构 C: 当前打开的文件夹名称及其内容 D: 当前打开的文件夹名称

solidworks 系统属性

设置Solidworks系统属性 在SolidWorks系统中,设置系统的属性是很重要的,它营造的是整个SolidWorks软件的工作环境,是基础性的工作。比如设置环境变量,设置符合国标GB的尺寸标准等。 选择主菜单【工具】︱【选项】,系统弹出【系统选项-常规】对话框,如图2-8所示,该对话框包括了两个选项卡:【系统选项】和【文件属性】。 2.4.1设置系统选项 在【系统选项】中设置的内容将保存在注册表中,它不是文件的一部分。因此,这些更改会影响当前和将来的所有文件。 如图2-8所示,【系统选项】选项卡以树状格式显示各个项目,当前项目以灰底显示,其对应的项目内容出现在右侧。下面介绍几个常用项目的设置。 图2-8 【系统选项】选项卡

1. 【常规】项目的设定 SolidWorks将常用的一些项目放在【常规】项目下,方便用户设置,以提高SolidWorks系统的效果。 【启动时打开上次所使用的文档】:若希望打开SolidWorks时自动打开最近使用过的文件,在该下拉列表框中选择【总是】,否则选择【从不】。 【标注尺寸时输入尺寸值】:建议选择该复选框。选择该复选框后,当对一个新的尺寸进行标注时,会自动显示尺寸值修改框,否则必须双击标注尺寸后才会显示尺寸值修改框。 【每选择一个命令仅一次有效】:选择该复选框后,每次使用草图绘制或尺寸标注工具进行操作后,系统会自动取消其选择状态,从而避免该命令的连续执行。双击某工具可使其保持为选择状态以继续使用。 【显示尺寸名称】:选择该复选框后,系统将显示标注后的尺寸名称及数值。 【每次重建模型时显示错误】:建议选择该复选框。选择该复选框后,如果在建立模型过程中有错误,系统会在每次重建模型时显示错误信息。 【保存文档前以更新错误警告】:建议选择该复选框。选择该复选框后,如果在保存文档前有错误,系统会显示错误信息,以便修正错误。 【打开文件时窗口最大化】:选择该复选框后,打开文件时系统将以最大尺寸将文件置于SolidWorks 窗口中。 【采用上色面高亮显示】:选择该复选框后,当使用选择工具选择面时,系统会将该面用单色显示(默认为绿色)。否则,系统会将该面的过线用蓝色虚线高亮显示。 【在资源管理器上显示缩略图】:选择该复选框后,在Windows资源管理器中会显示每个SolidWorks零件或装配图的缩略图,而不是图标,方便用户选择和操作。该缩略图将以文件保存时

2014年武汉市中考数学试题(完美答案解析版)

2014年武汉市初中毕业生学业考试数学试卷 一、选择题(共10小题,每小题3分,满分30分) 下列各题中均有四个备选答案中,其中有且只有一个是正确的 1.在实数-2、0、2、3中,最小的实数是( ) A .-2 B .0 C .2 D .3 2.若代数式3 x 在实数范围内有意义,则x 的取值范围是( ) A .x ≥-3 B .x >3 C .x ≥3 D .x ≤3 3.光速约为300 000千米/秒,将数字300 000用科学记数法表示为( ) A .3×10 4 B .3×10 5 C .3×106 D .30×104 4 那么这些运动员跳高成绩的众数是( ) A .4 B .1.75 C .1.70 D .1.65 5.下列代数运算正确的是( ) A .(x 3)2 =x 5 B .(2x )2=2x 2 C .x 3 ·x 2 =x 5 D .(x +1) 2 =x 2 +1 6.如图,线段AB 两个端点的坐标分别为A(6,6)、B(8,2),以原点O 为位似中心,在第一象限 内将线段AB 缩小为原来的后得到线段CD ,则端点C 的坐标为( ) A .(3,3) B .(4,3) C .(3,1) D .(4,1) 7.如图,由4个大小相同的正方体组合而成的几何体,其俯视图是( ) 8 .为了解某一路口某一时刻的汽车流量, 小明同学10天中在同一时段统计该路口的汽车数量(单位:辆),将统计结果绘制成如下折线统计图: 由此估计一个月(30天)该时段通过该路口的汽车数量超过200辆的天数为( ) A .9 B .10 C .12 D .15 9.观察下列一组图形中的个数,其中第1个图中共有4个点,第2个图中共有10个点,第3个图中共有19个点,……,按此规律第5个图中共有点的个数是( ) A .31 B .46 C .51 D .66 A B C D

文件夹属性修改(隐藏只读系统)

方法一不管用,请尝试方法二或方法三…… 方法一:通过“工具-文件夹选项”显示隐藏文件 方法二:用bat文件 1.新建一个文本文档 2.在文档里面输入“attrib *.* -s -h -r /s /d”(不含引号,注意空格 不可少!),保存退出。 3.将文件名后缀txt改为.bat 4.最后把这个文件复制到有问题的U盘根目录下,双击运行。 5.看看U盘中的文件和文件夹,是不是都恢复原状了呢? 以下是解释! arrtib命令的参数“-s -h -r *.* /s /d”

●文件夹属性有三个:只读、隐藏、系统文件(前面连个比较常见)。 ●-号,就是减号,意思是去掉;减号改成加号的话,就表示加上属 性,有兴趣可以试一下。(请不要在C盘系统安装的目录中运行该命令) ●s表示系统文件(system),h表示隐藏文件(hide),r表示只读文件 (read only)。-s -h -r表示去除系统、隐藏和只读属性; ●*.*的意思是对目录下所有的文件进行操作,这里也可以写文件或 文件夹名字。 ●/s /d就是表示也处理文件和子文件夹里的文件。 ●整句话的意思就是把当前目录下的所有文件和文 件夹的系统、隐藏和只读属性去掉 方法三:用命令提示符窗口 1.在“开始——运行”在里面输入cmd,打开系统的命令提示符, 在里面输入盘符,进入需要修改的优盘,相关设置如下: 2.C:\Documents and Settings\Administrator>J://进入J盘目 录(假设J为优盘) 3.j:\>dir/a//这个指令是查看当前目录全部的文件,包括有隐 藏属性的。查看后记住该文件夹的名字,下面的操作可直接针对此文件夹进行(如果不想查看可不执行此命令) 4.J:\>attrib 文件夹的名字-r -h –s /s /d 就可以显示了, “文件夹的名字”就是当前优盘下的隐藏的文件夹的名字

2014·陕西(理科数学)精品完美解析版

第 1 页 共 10 页 2014·陕西卷(理科数学) 1.[2014·陕西卷] 设集合M ={x |x ≥0,x ∈R },N ={x |x 2<1,x ∈R },则M ∩N =( ) A .[0,1] B .[0,1) C .(0,1] D .(0,1) 1.B [解析] 由M ={x |x ≥0,x ∈R },N ={x |x 2<1,x ∈R }={x |-10,ω>0)的周期为T =2πω ,故函数f (x )的最小正周期T =2π2 =π. 3.[2014·陕西卷] 定积分??0 1(2x +e x )d x 的值为( ) A .e +2 B .e +1 C .e D .e -1 3.C [解析] ??0 1(2x +e x )d x =(x 2+e x )10=(12+e 1)-(02+e 0)=e . 图1-1 4.[2014·陕西卷] 根据如图1-1所示的框图,对大于2的整数N ,输出的数列的通项公式是( ) A .a n =2n B .a n =2(n -1) C .a n =2n D .a n =2n -1 4.C [解析] 阅读题中所给的程序框图可知,对大于2的整数N ,输出数列:2,2×2 =22,2×22=23,2×23=24,…,2×2N -1=2N ,故其通项公式为a n =2n . 5.[2014·陕西卷] 已知底面边长为1,侧棱长为2的正四棱柱的各顶点均在同一个球面上,则该球的体积为( ) A.32π3 B .4π C .2π D.4π3

如何实现文件的同步以及同步属性的设置

如何实现文件的同步以及同步属性的设置 如何实现文件的同步以及同步属性的设置是系统天下xp系统盘下载站为方便大家遇到此问题能及时解决此问题而整合收集而来。本站收集了各种[操作系统]优化教程,如xp系统优化教程,win7系统优化教程,xp系统工具的使用方法,操作系统入门教程等方便网友及时找到需要的教程。 实现文件同步的具体步骤如下。 ①在【网上邻居】窗口中右键单击需要同步的文件,在快捷菜单中选择【允许脱机使用】菜单项。 ②如果这是第一次启用文件同步,系统会自动运行【脱机文件向导】。 ③单击【下一步】按钮,根据提示选择好相应的信息,然后单击【下一步】按钮从中根据自己的情况进行选择,选择完后单击【完成】按钮结束【脱机文件向导】的设置。在同步完成后会有一个短暂的提示,显示同步完成。使用过【脱机文件向导】后,以后的脱机不会再出现向导。 2.设置同步属性 单击【开始】>【所有程序】>【附件】>【同步】菜单项打开【要同步的项目】对话框。单击【设置】按钮弹出【同步设置】对话框,在此有3个选项卡,用户可以分别对它们进行设置。 ●怎样打开同步文件? ●不管同步什么样的文件类型,同步管理器都提供了一个单独的位置来存放脱机文件。在【要同步的项目】对话框中单击【属性】按钮则可打开该文件夹。 ●【登录/注销】选项卡

【登录/注销】选项卡在此用户可以在【在使用这个网络连接时】下拉列表中选择使用何种连接进行同步。选中【登录计算机时】和【从计算机注销时】复选框进行自动同步,可以在计算机登录和注销时对列表中选定的脱机文件进行同步。选中【同步项目之前发出提示】复选框,可以在同步发生前发出同步提示。 ●【空闲状态】选项卡 切换到【空闲状态】选项卡中,选中【在计算机空闲时同步所选项目】复选框,然后选中相应的脱机文件。 ●【计划】选项卡 切换到【计划】选项卡中,在此用户可以瀑加一个同步计划。具体的操作步骤如下。 ①单击【添加】按钮弹出【同步计划向导】对话框,单击【下一步】按钮弹出【选择同步项目】的对话框,从中可选择同步的项目。 ②单击【下一步】按钮弹出选择时间和日期的对话框,在此选择同步任务开始的时间和日期。设置好后单击【下一步】按钮弹出输入名称对话框,在此为计划好的同步输入一个名称。 ③单击【下一步】按钮弹出设置成功的对话框对话框,显示已成功地计划了同步任务。单击【确定】按钮则添加了一个同步计划。 在图同步设置列表对话框中,用户可以单击【删除】按钮删除已有的同步计划,也可以单击【编辑】按钮对同步计划的设定进行改动。在弹出的【计划中的更新】对话框中,有【常规】、【同步项目】、【计划】和【设置】4个选项卡。 (1)【常规】选项卡:可以为同步计划改名。 (2)【同步项目】选项卡:可以更改要进行同步的文件列表。

2014·广东(文科数学)精品完美解析版

第 1 页 共 5 页 2014·广东卷(文科数学) 1.[2014·广东卷] 已知集合M ={2,3,4},N ={0,2,3,5},则M ∩N =( ) A .{0,2} B .{2,3} C .{3,4} D .{3,5} 1.B [解析] ∵M ={2,3,4},N ={0,2,3,5},∴M ∩N ={2,3}. 2.[2014·广东卷] 已知复数z 满足(3-4i)z =25,则z =( ) A .-3-4i B .-3+4i C .3-4i D .3+4i 2.D [解析] ∵(3-4i)z =25,∴z =253-4i =25(3+4i )(3-4i )(3+4i ) =3+4i. 3.[2014·广东卷] 已知向量a =(1,2),b =(3,1),则b -a =( ) A .(-2,1) B .(2,-1) C .(2,0) D .(4,3) 3.B [解析] b -a =(3,1)-(1,2)=(2,-1). 4.[2014·广东卷] 若变量x ,y 满足约束条件?????x +2y ≤8,0≤x ≤4,0≤y ≤3, 则z =2x +y 的最大值等于( ) A .7 B .8 C .10 D .11 4.D [解析] 作出不等式组所表示的平面区域,如图中阴影部分所示.作出直线l :2x +y =0,平移该直线,当直线经过点A (4,3)时,直线l 的截距最大,此时z =zx +y 取得最大值,最大值是 11 . 5.[2014·广东卷] 下列函数为奇函数的是( ) A .2x -12x B .x 3sin x C .2cos x +1 D .x 2+2x 5.A [解析] 对于A 选项,令f (x )=2x -12x =2x -2-x ,其定义域是R ,f (-x )=2-x -2x =-f (x ),所以A 正确;对于B 选项,根据奇函数乘奇函数是偶函数,所以x 3sin x 是偶函数;C 显然也是偶函数;对于D 选项,根据奇偶性的定义,该函数显然是非奇非偶函数. 6.[2014·广东卷] 为了解1000名学生的学习情况,采用系统抽样的方法,从中抽取容量为40的样本,则分段的间隔为( ) A .50 B .40 C .25 D .20 6.C [解析] 由题意得,分段间隔是100040 =25.

matlab上机完美版解析

1.已知3阶椭圆IIR数字低通滤波器的性能指标为:通带截止频率 0.4π,通带波纹为0.6dB,最小阻带衰减为32dB。设计一个6阶 全通滤波器对其通带的群延时进行均衡。绘制低通滤波器和级联滤波器的群延时。 %Q1_solution %ellip(N,Ap,Ast,Wp)//双线性法设计低通滤波器 %N--->The order of the filter %Ap-->ripple in the passband %Ast->a stopband Rs dB down from the peak value in the passband %Wp-->the passband width [be,ae]=ellip(3,0.6,32,0.4); hellip=dfilt.df2(be,ae); f=0:0.001:0.4; g=grpdelay(hellip,f,2); g1=max(g)-g; [b,a,tau]=iirgrpdelay(6,f,[0 0.4],g1); hallpass=dfilt.df2(b,a);//级联 hoverall=cascade(hallpass,hellip); hFVT=fvtool([hellip,hoverall]); set(hFVT,'Filter',[hellip,hoverall]); legend(hFVT,'Lowpass Elliptic filter','Compensated filter');//添加图例的标注 clear; [num1,den1]=ellip(3,0.6,32,0.4); [GdH,w]=grpdelay(num1,den1,512); plot(w/pi,GdH); grid xlabel('\omega/\pi'); ylabel('Group delay, samples'); F=0:0.001:0.4; g=grpdelay(num1,den1,F,2); % Equalize the passband Gd=max(g)-g; % Design the allpass delay equalizer [num2,den2]=iirgrpdelay(6,F,[0,0.4],Gd); [GdA,w] = grpdelay(num2,den2,512);

dos指令设置文件夹和文件为系统属性

为了防止u盘中病毒,可以再u盘里新建一个AutoRun.inf的文件夹,然后设置成只读、隐藏、系统属性。-------------------------------------------------------------------------------------------------- 怎么把文件夹设置成系统文件夹? 用attrib命令比如把C:\file文件夹设为系统隐藏属性 管理员身份运行cmd 在命令窗口中输入 "attrib c:\file +s +h " 就可以了 下面顺便把attrib命令详解一下:显示、设置或删除指派给文件或目录的只读、存档、系统以及隐藏属性。 如果在不含参数的情况下使用,则 attrib 命令会显示当前目录中所有文件的属性。 语法 attrib [{+r | -r}] [{+a | -a}] [{+s | -s}] [{+h | -h}] attrib [[Drive:][Path] FileName] [/s[/d]] 参数 +r 设置只读文件属性。 -r 清除只读文件属性。 +a 设置存档属性。 -a 清除存档属性。 +s 设置系统文件属性。 -s 清除系统文件属性。 +h 设置隐藏文件属性。 -h 清除隐藏文件属性。 /s 将 attrib 和任意命令行选项应用到当前目录及其所有子目录中的匹配文件。 /d 将 attrib 和任意命令行选项应用到目录。 /? 在命令提示符下显示帮助。 -------------------------------------------------------------------------------------------------------------------

相关文档
相关文档 最新文档