码迷,mamicode.com
首页 >  
搜索关键字:figure    ( 2425个结果
POJ 2007 Scrambled Polygon(凸包)
Scrambled Polygon Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 7568   Accepted: 3604 Description A closed polygon is a figure bounded by a finite number...
分类:其他好文   时间:2015-08-12 01:25:19    阅读次数:125
POJ 1163&& 3176 The Triangle(DP)
The Triangle Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 41169   Accepted: 24882 Description 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5 (Figure...
分类:其他好文   时间:2015-08-10 09:29:03    阅读次数:101
matlab循环中保存.jpg图片的方法
在写matlab程序时,会遇到在循环中保存图片的问题 利用saveas可以非常方便的保存在当前文件夹中 例如 for ii = 1:N fig(ii) = figure(ii); plot()... picturename = strcat('Scatter P',num2str(ii),'.jpg'); saveas(fig(ii),picturename,'jpg') en...
分类:其他好文   时间:2015-08-06 15:05:17    阅读次数:803
Python 之 Python与MATLAB 作图小结
一、一般概念 图形系统就是用来实现所谓的可视化的。在学习具体的命令之前,先了解一个可视化的图形具有哪些特征,以及这些特征具有什么关系。有了一个宏观的了解之后,记住几个核心的命令,等遇到具体问题时候查询相关文档或者查看类似图形别人的代码即可。就以我们在纸上作图作为比拟: 首先,我们需要一张白纸。这张白纸,就是一个所谓的figure。我们可以给这个figure取一个名字,写在这张纸的正中间...
分类:编程语言   时间:2015-08-06 00:42:33    阅读次数:294
一致性算法探寻(扩展版)3
5 The Raft consensus algorithm Raft is an algorithm for managing a replicated log of?the form described in Section 2. Figure 2 summarizes the?algorithm in condensed form for reference, and Figure...
分类:编程语言   时间:2015-08-05 20:38:53    阅读次数:150
HTML5笔记
1.HTML5中8个新的HTML语义(semantic)元素,都是块级元素:为了让旧版本的浏览器正确显示这些元素,设置CSS的display属性为block:1 header, section, footer, aside, nav, main, article, figure { 2 displ....
分类:Web程序   时间:2015-08-03 18:54:44    阅读次数:156
搜索算法
深度优先搜索算法(DFS)要理解深度优先搜索必须理解递归的本质,递归的核心思想在于在一个函数还没有执行完成的时候就调用自身,这样就会形成一个树状的结构,从而使其可以一直延伸下去,进而覆盖所有可能的分支。直到某一层递归条件满足,才开始收敛。Figure 1 递归Note:图中序号相同而且用虚线相连.....
分类:编程语言   时间:2015-08-02 13:14:56    阅读次数:118
POJ - 2484 A Funny Game
Description Alice and Bob decide to play a funny game. At the beginning of the game they pick n(1 <= n <= 10 6) coins in a circle, as Figure 1 shows. A move consists in removing one or two adjacen...
分类:其他好文   时间:2015-07-31 18:33:26    阅读次数:118
LeetCode223——Rectangle Area
Find the total area covered by two rectilinear rectangles in a 2D plane. Each rectangle is defined by its bottom left corner and top right corner as shown in the figure. Assume that the tota...
分类:其他好文   时间:2015-07-31 18:18:48    阅读次数:112
在matlab中进行地理坐标和像素坐标的相互转换
clc;close all;clear;%地理坐标和像素坐标的相互转换[pic,R]=geotiffread('boston.tif'); %读取带地理坐标信息的tif影像[m,n,~]=size(pic);%像素坐标转换为地理坐标figure(1),imshow(pic),title('不带地理坐...
分类:其他好文   时间:2015-07-29 00:57:03    阅读次数:313
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!