自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Ivan 的专栏

电路设计、嵌入式编程、算法。。。

  • 博客(15)
  • 资源 (20)
  • 收藏
  • 关注

原创 陶哲轩实分析 6.2 节习题试解

陶哲轩实分析 6.2 节习题试解6.2.1 证明命题 6.2.5(a) 自反性 x≤xx \leq x 分类讨论: 当 x=∞x = \infty 时,有 ∞≤∞\infty \leq \infty 当 x∈Rx \in \mathbb R 时,有 x≤xx \leq x 当 x=−∞x = -\infty 时,有 −∞≤−∞-\infty \leq -\infty 所以 x∈R∗x \i

2016-07-27 00:55:15 1917

原创 陶哲轩实分析 6.1 节习题试解

陶哲轩实分析 6.1 节习题试解6.1.1 设 (an)∞n=0(a_n)_{n=0}^{\infty} 是一个实数列,对每个自然数 nn 都满足 an+1>ana_{n+1} > a_n,证明只要 nn 和 mm 是自然数,满足 m>nm > n,我们就有 am>ana_m > a_n数学归纳法: 当 m=n+1m = n + 1 时 am=an+1>ana_m = a_{n+1} > a_n

2016-07-25 12:08:07 3042 1

原创 陶哲轩实分析 5.6 节习题试解

陶哲轩实分析 5.6 节习题试解5.6.1 证明引理 5.6.6设 x,y>0x,y > 0 是正的实数,并设 m,n≥1m,n \geq 1 是正的整数。 (a)如果 y=x1/ny = x^{1/n},那么 yn=xy^n=x 证明: 首先,{z∈R:z≥0,zn≤x}\{z \in \mathbb{R}: z \geq 0, z^n \leq x\} 是非空集合,必然存在上确界,设这个上

2016-07-20 23:19:18 2763 4

原创 LeetCode 第 48 题(Rotate Image)

LeetCode 第 48 题(Rotate Image) You are given an n x n 2D matrix representing an image. Rotate the image by 90 degrees (clockwise). Follow up: Could you do this in-place?将一个矩阵顺时针旋转 90 度。有两种

2016-07-17 15:04:36 1577

原创 不规则多边形区域的面积计算算法

不规则多边形区域的面积计算算法最近在写一个显微图像分析处理方面的程序,里面有一个功能是计算一个不规则的多边形区域的面积。因此花了点时间研究这个算法该如何写。研究了一番之后,算是找到了个比较靠谱的算法。这里就简单的写写自己的研究成果。解决这个问题,需要点线性代数和矢量运算方面的知识。以下图为例,设三角形的三个顶点为 a,b,ca, b, c,坐标分别为 (xa,ya),(xb,yb),(xc,yc)(

2016-07-15 21:20:01 27813 5

原创 Leetcode 第 374 题(Guess Number Higher or Lower)

Leetcode 第 374 题(Guess Number Higher or Lower) We are playing the Guess Game. The game is as follows: I pick a number from 1 to n. You have to guess which number I picked. Every time you guess

2016-07-14 22:29:26 2071

原创 LeetCode 第 73 题 (Set Matrix Zeroes)

LeetCode 第 73 题 (Set Matrix Zeroes) Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place. Follow up: Did you use extra space? A straight forward sol

2016-07-13 19:29:32 2621

原创 LeetCode 第 372 题 (Super Pow)

LeetCode 第 72 题 (Super Pow) Your task is to calculate ab mod 1337 where a is a positive integer and b is an extremely large positive integer given in the form of an array. Example1: a = 2

2016-07-12 21:02:17 3103

原创 LeetCode 第 367 题 (Valid Perfect Square)

LeetCode 第 367 题 (Valid Perfect Square) Given a positive integer num, write a function which returns True if num is a perfect square else False. Note: Do not use any built-in library function su

2016-07-12 20:29:35 2512

原创 LeetCode 第 19 题 (Remove Nth Node From End of List)

LeetCode 第 19 题 (Remove Nth Node From End of List) Given a linked list, remove the nth node from the end of list and return its head. For example, Given linked list: 1->2->3->4->5, and n = 2.

2016-07-07 22:33:50 2173

原创 LeetCode 第 292 题 (Nim Game)

LeetCode 第 292 题 (Nim Game) You are playing the following Nim Game with your friend: There is a heap of stones on the table, each time one of you take turns to remove 1 to 3 stones. The one who remov

2016-07-05 13:58:13 1663

原创 LeetCode 第 67 题 (Add Binary)

LeetCode 第 67 题 (Add Binary) Given two binary strings, return their sum (also a binary string). For example, a = “11” b = “1” Return “100”.两个字符串,计算加法。这道题主要是考察对字符串操作的掌握情况。另外,加法要从低位算起,但是

2016-07-03 13:21:30 3027

原创 LeetCode 第 263 题 (Ugly Number)

LeetCode 第 263 题 (Ugly Number) Write a program to check whether a given number is an ugly number. Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 6, 8 ar

2016-07-02 09:08:41 2609

原创 LeetCode 第 371 题 (Sum of Two Integers)

LeetCode 第 371 题 (Sum of Two Integers) Calculate the sum of two integers a and b, but you are not allowed to use the operator + and -. Example: Given a = 1 and b = 2, return 3.不用加减法计算两个整数的和。这道

2016-07-01 19:56:30 5813

原创 LeetCode 第 204 题 (Count Primes)

LeetCode 第 204 题 (Count Primes) Description: Count the number of prime numbers less than a non-negative number, n.计算小于 N 的素数的个数。这道题目比较简单。但是想提高计算效率与需要费点脑筋。判断一个数字 nn 是不是素数的简单方法是 用 nn 去除 2,3,4,…,n−1

2016-07-01 12:37:52 2065

barcode-0.99-win32-64.zip

gnu barcode (https://www.gnu.org/software/barcode/) 用 msvc 2017 编译好的 lib 和 dll 还有头文件和帮助文件。 包括 32位和 64 位版本。可以直接在自己的项目中使用。

2020-06-07

qtmqtt-dev-modified.zip

QT MQTT 官方支持模块。源代码来自 https://github.com/qt/qtmqtt, 但是这个代码编译时会报很多错误,我将这些错误逐一修改了。现在这个代码可以直接编译。

2020-06-07

qtmqtt-qt5.12.4-msvc2017.zip

Qt MQTT 模块,源代码来自 github.com/qt/qtmqtt,这个代码直接编译会报很多错误,需要逐一修改,为了减少大家的重复劳动,我把编译好的代码放这里。编译环境为 Qt5.12.4 MSVC2017。

2020-06-07

PVsyst6_6_7_setup.msi

PVsyst是一个完整的研究、测量、模拟和分析光伏系统的软件包。 主页:http://www.pvsyst.com/ 主页下载不支持断点续传。下载速度非常慢,还经常中断。 这个不是破解版,可以试用 30 天。30天后需要取购买 licence。

2020-02-15

Exposure Fusion.pdf

Tom Mertens,Jan Kautz 和 Frank Van Reeth 题为 Exposure Fusion 的论文。曝光合成算法的经典论文。

2020-02-08

VS2015 编译的 GSL 2.3

用 VS2015 编译的 GSL 2.3 。包括静态库和 DLL。静态库和 DLL又分别对应了 win32 和 x64 两种配置。 gsl 是 GNU Scientific Library,著名的数值计算库。

2017-02-19

VS2015 编译的 GSL(GNU Scientific Library)

VS2015 x86 编译器 编译的 GSL-2.1 (GNU Scientific Library) 。包含静态库和动态库 dll。 注意:非 VS2015 编译的 GSL 都不能用在 VS2015 中,网上其他所有的 gsl for windows 都不行的。花了我将近一周时间才把 gsl 移植到 vs2015 上。

2016-08-31

用于 Visual stdio 的 GSL 1.16 (GNU Scientific Libary)

用于 Visual stdio 的 GSL 1.16 (GNU Scientific Libary)。在 VS 2010 开发环境中测试通过。应该也可以用在其他的 VS 版本上。包括静态链接库和动态链接库。

2015-08-15

VIM Quick Reference Card

VIM Quick Reference Card 快速参考页,简明扼要

2012-06-03

UML Quick Reference Card

UML Quick Reference Card 快速参考,简明扼要

2012-06-03

STL Quick Reference

STL Quick Reference 快速参考

2012-06-03

Subversion 快速参考

Subversion 快速参考,简明扼要,案头必备

2012-06-03

Doxygen Quick Reference.

Doxygen Quick Reference Card Doxygen 快速参考,简明扼要,案头必备

2012-06-03

Bash Quick Reference

Bash 脚本的快速参考手册,简明扼要,案头必备!

2012-06-03

Ada Reference Card

Ada 语言的快速参考手册,简明扼要,案头必备!

2012-06-03

GDB Quick Reference

GDB 调试器的快速参考,只有两页,简明扼要。案头必备!

2012-06-03

C Reference Card

C 快速参考,只有两页,将 C 语言的语法,标准库函数都涵盖了。案头必备!

2012-06-03

gnuplot 4.6 for win

gnuplot 4.6 win 版. 一个命令行的交互式绘图工具

2012-05-26

The Multiboot Specification version 0.6.96

多重引导规范的官方文本。 GRUB GRUB2 等引导程序都支持多重引导规范。

2012-05-19

MISRA C:2004 中文版

MISRA C :2004 Guidelines for the use of the C language in critical systems 中文版

2012-05-08

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除