码迷,mamicode.com
首页 > 其他好文
【原创】Matlab中plot函数全功能解析
【原创】Matlab中plot函数全功能解析该帖由Matlab技术论(http://www.matlabsky.com)坛原创,更多精彩内容参见http://www.matlabsky.com功能二维曲线绘图语法plot(Y)plot(X1,Y1,...)plot(X1,Y1,LineSpec,.....
分类:其他好文   时间:2015-07-11 13:27:31    阅读次数:115
islower||isdigit||isupper
相关函数isalpha,isupper表头文件#include定义函数int islower(int c)函数说明检查参数c是否为小写英文字母。返回值若参数c为小写英文字母,则返回TRUE,否则返回NULL(0)。附加说明此为宏定义,非真正函数。1 #include2 main()3 {4 char...
分类:其他好文   时间:2015-07-11 13:29:10    阅读次数:81
这两天阅读频谱仪与锁相放大器资料小结
频谱仪基本框架:基本原理基于这个公式:sin(w0*t+m)*sin(w1*t) = {cos[(w0-w1)*t+m]+cos[(w0+w1)t+m]}/2上式用模拟乘法器(混频器)实现,w0为频谱仪输入频率,w1为受控本振频率,通过LBP之后滤除(w0+w1)项,检测(w0-w1)项;sorry...
分类:其他好文   时间:2015-07-11 13:29:16    阅读次数:119
poj1094 拓扑 Sorting It All Out
Sorting It All OutTime Limit: 1000MSMemory Limit: 10000KTotal Submissions: 29744Accepted: 10293DescriptionAn ascending sorted sequence of distinct val...
分类:其他好文   时间:2015-07-11 13:25:44    阅读次数:98
Xcode 自定义代码段
看见老师敲程序时,快捷键一打,所需要的一整行代码都出来了,着实感觉到效率太高了。看了几天,才反应过来为什么自己没有get这个方法呢,现在就整理一番,记录一下。此处以@property(nonatomic,copy)NSString * placeHolderStr; 为例,建立一个简单的。1.首先,...
分类:其他好文   时间:2015-07-11 13:27:12    阅读次数:126
HDU1879 kruscal 继续畅通工程
继续畅通工程Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 17028Accepted Submission(s): 7319Problem Des...
分类:其他好文   时间:2015-07-11 13:26:12    阅读次数:127
执行UI事件阻塞射线场景事件
Unity中鼠标点击NGUI UI时,同时会有射线碰撞到场景物件,从而执行其它表现。那么问题来了怎么规避同时触发呢,有个原则就是UI执行顺序第一那么我们就讲讲主线程执行顺序1、主线程结构 1 public class GameMain : MonoBehaviour2 {3 vo...
分类:其他好文   时间:2015-07-11 13:27:41    阅读次数:119
LeetCode Maximum Depth of Binary Tree (求树的深度)
题意:给一棵二叉树,求其深度。思路:递归比较简洁,先求左子树深度,再求右子树深度,比较其结果,返回:max_one+1。 1 /** 2 * Definition for a binary tree node. 3 * struct TreeNode { 4 * int val; 5 ...
分类:其他好文   时间:2015-07-11 13:25:41    阅读次数:125
更改初级成本要素
菜单路径 会计 -> 控制 -> 成本要素会计 -> 主数据 -> 成本要素 -> 单个处理 -> 更改 事务代码 KA02 操作与创建基本相同,参照创建操作说明
分类:其他好文   时间:2015-07-11 13:24:19    阅读次数:145
table中某一个tr边框样式设置
1122 border-top:#FF0000 solid 1px;指的要上边框。border-bottom:#FF0000 solid 1px;指的要下边框。border-left:#FF0000 solid 1px;指的要左边框。border-right:#FF0000 solid 1px;指的...
分类:其他好文   时间:2015-07-11 13:24:15    阅读次数:120
科目二终于过了(各项目总结)
科目二终于考过了。说说各个考试项目吧。
分类:其他好文   时间:2015-07-11 13:25:38    阅读次数:122
测试客户端的使用
插入源代码: /** To change this license header, choose License Headers in Project Properties.* To change this template file, choose Tools | Templates* and o...
分类:其他好文   时间:2015-07-11 13:25:55    阅读次数:105
正确 zip 压缩和解压码
网上流传zip压缩和解压缩 该代码有一个非常大的问题 尽管使用了ant压缩和解压缩。但任务流或使用java.util.zip 的方式来写,我在压缩的文件夹结构中所使用的过程遇到是不正确,即使是不同的文件解压缩软件显示不同困境的文件夹结构。使用下面给出org.apache.tools.ant.task...
分类:其他好文   时间:2015-07-11 13:25:05    阅读次数:129
[leedcode 47] Permutations II
Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2]have the following unique perm...
分类:其他好文   时间:2015-07-11 13:22:30    阅读次数:122
UI4_LabelChess
//// AppDelegate.m// UI4_LabelChess//// Created by zhangxueming on 15/6/29.// Copyright (c) 2015年 zhangxueming. All rights reserved.//#import "App...
分类:其他好文   时间:2015-07-11 13:23:36    阅读次数:114
vijos 1037 ***
链接:点我 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 const int v = 2000 + 5; 7 const int MaxN = 100 + 5; 8 int N, sum, num[M...
分类:其他好文   时间:2015-07-11 13:23:48    阅读次数:113
回文自动机
var n:longint; nt:array[0..200008,0..26] of longint; size,l,fa:array[0..200008] of longint; s:array[0..200008] of char; cnt,last:longint;p...
分类:其他好文   时间:2015-07-11 13:21:36    阅读次数:115
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!