首页 > 2017年02月23日 > 全部分享
《DSP using MATLAB》示例Example 6.10
上代码: 运行结果: 结构图: ...
分类:其他   时间:2017-02-23 20:46:10    收藏:0  评论:0  赞:0  阅读:184
机器学习之降维方法
数据降维的目的:数据降维,直观地好处是维度降低了,便于计算和可视化,其更深层次的意义在于有效信息的提取综合及无用信息的摈弃。 数据降维的好处:降维可以方便数据可视化+数据分析+数据压缩+数据提取等。 降维方法 __ 属性选择:过滤法;包装法;嵌入法; |_ 映射方法 _线性映射方法:PCA、LDA、 ...
分类:其他   时间:2017-02-23 20:45:57    收藏:0  评论:0  赞:0  阅读:235
Scala语法学习手册
1 快速入门... 2 1.1 分号... 2 1.2 常变量声明... 2 1.2.1 val常量... 2 1.2.2 var变量... 2 1.2.3 类型推导... 3 1.2.4 函数编程风格... 3 1.3 Range.... ...
分类:其他   时间:2017-02-23 20:44:57    收藏:0  评论:0  赞:0  阅读:207
纯css实现移动端横向滑动列表
前几天在公司做开发的时候碰到一个列表横向滑动的功能,当时用了iscroll做,结果导致手指触到列表的范围内竖向滑动屏幕滑动不了的问题。 这个问题不知道iscroll本身能不能解决,当时选择了换一种方式来做,只要css就能搞定了,主要是利用了display:-webkit-box来实现。 ...
分类:移动平台   时间:2017-02-23 20:44:36    收藏:0  评论:0  赞:0  阅读:265
LEDE Project
https://lede-project.org/ The LEDE Project (“Linux Embedded Development Environment”) is a Linux operating system based on OpenWrt. It is a complete r ...
分类:其他   时间:2017-02-23 20:44:20    收藏:0  评论:0  赞:0  阅读:397
IOS AlterView的使用(IOS8.0以前使用)
#pragma mark - 代理方法 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { // 1.取得被点击这行对应的模型 MJHero *hero = sel... ...
分类:移动平台   时间:2017-02-23 20:44:02    收藏:0  评论:0  赞:0  阅读:346
Android N特性解析
作者:Redyan, 腾讯移动客户端开发工程师 商业转载请联系腾讯WeTest获得授权,非商业转载请注明出处。 原文链接:http://wetest.qq.com/lab/view/288.html 导语 8月22日,谷歌正式推送Android 7.0 Nougat(牛轧糖)正式版,首发推送了多款N ...
分类:移动平台   时间:2017-02-23 20:43:46    收藏:0  评论:0  赞:0  阅读:215
CollectionUtils
public class CollectionUtils { /** * 数组是否包含元素 * @param arr * @param str * @return */ public static boolean isArrayContains(String[] arr, String str) {... ...
分类:其他   时间:2017-02-23 20:43:27    收藏:0  评论:0  赞:0  阅读:201
用字符串生成二维码
需要导入Zxing.jar包 import android.graphics.Bitmap; import com.google.zxing.BarcodeFormat; import com.google.zxing.MultiFormatWriter; import com.google.zxi... ...
分类:其他   时间:2017-02-23 20:42:40    收藏:0  评论:0  赞:0  阅读:183
js兼容事件
//浏览器检测(function () { window.sys = {}; var ua = navigator.userAgent.toLowerCase(); var s; (s = ua.match(/msie ([\d.]+)/)) ? sys.ie = s[1] : (s = ua.ma ...
分类:Web开发   时间:2017-02-23 20:42:23    收藏:0  评论:0  赞:0  阅读:157
BZOJ 4764: 弹飞大爷
4764: 弹飞大爷 Description 自从WC退役以来,大爷是越来越懒惰了。为了帮助他活动筋骨,也是受到了弹飞绵羊一题的启发,机房的小伙伴们 决定齐心合力构造一个下面这样的序列。这个序列共有N项,每项都代表了一个小伙伴的力量值,如果大爷落到了 第i个小伙伴的手里,那么第i个小伙伴会把大爷弹到 ...
分类:其他   时间:2017-02-23 20:41:30    收藏:0  评论:0  赞:0  阅读:473
[HTML5] Focus management using CSS, HTML, and JavaScript
Something important to consider when coding a web application is managing the user's focus. For keyboard and screen reader users, we must ensure their ...
分类:编程语言   时间:2017-02-23 20:41:11    收藏:0  评论:0  赞:0  阅读:200
51 Nod 1678 lyk与gcd
1678 lyk与gcd 基准时间限制:2 秒 空间限制:131072 KB 分值: 80 难度:5级算法题 1678 lyk与gcd 基准时间限制:2 秒 空间限制:131072 KB 分值: 80 难度:5级算法题 1678 lyk与gcd 基准时间限制:2 秒 空间限制:131072 KB 分 ...
分类:其他   时间:2017-02-23 20:40:45    收藏:0  评论:0  赞:0  阅读:154
ResourceUtils 创建资源目录工具类
package com.jcf.utilsdemo; import android.content.Context; import android.content.res.Resources; public class ResourceUtils { public static int getDra... ...
分类:其他   时间:2017-02-23 20:40:27    收藏:0  评论:0  赞:0  阅读:233
ThreadUtils
import android.os.Handler; import android.os.Looper; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; public class ... ...
分类:其他   时间:2017-02-23 20:40:04    收藏:0  评论:0  赞:0  阅读:549
ScreenShot 截图工具类
import android.app.Activity; import android.graphics.Bitmap; import android.graphics.Rect; import android.view.View; import java.io.FileNotFoundExcept... ...
分类:其他   时间:2017-02-23 20:39:47    收藏:0  评论:0  赞:0  阅读:301
Android的Fragment的自定义转场动画
Fragment间转场可以使用setTransition()来设置系统默认的转场动画,也可以使用setCustomAnimations()方法来自定义转场动画。 Set specific animation resources to run for the fragments that are en ...
分类:移动平台   时间:2017-02-23 20:39:34    收藏:0  评论:0  赞:0  阅读:260
同一个逻辑的三种写法
同一个逻辑的三种写法: 我的写法 林姐的写法 方法一 方法二 这种方法节省内存 ...
分类:其他   时间:2017-02-23 20:39:06    收藏:0  评论:0  赞:0  阅读:231
加减乘除
<!DOCTYPE html><html> <head> <title> 事件</title> <script type="text/javascript"> function count(){ var value3; var value1=parseInt(document.getElementB ...
分类:其他   时间:2017-02-23 20:38:56    收藏:0  评论:0  赞:0  阅读:154
ViedoUtil获取视频的缩略图
package com.jcf.utilsdemo; import android.graphics.Bitmap; import android.media.ThumbnailUtils; public class ViedoUtil { /** * 获取视频的缩略图 * 先通过Thumbnail... ...
分类:其他   时间:2017-02-23 20:38:37    收藏:0  评论:0  赞:0  阅读:204
1288条   上一页 1 ... 10 11 12 13 14 ... 65 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!