自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(1)
  • 资源 (6)
  • 收藏
  • 关注

原创 Hello C语言

#include <stdio.h> #include <stdlib.h> int main(int argc, char *argv[]) { int a = 2134; int c = 432; printf("a+b=%d",a+c); return 0; }

2019-12-07 11:06:41 171

单层感知机的Matlab实现

包含单层感知机的matlab实现代码,训练部分,测试部分,和ROC曲线绘制。 单层感知机的背景,原理,其他语言的代码链接请见: http://blog.csdn.net/zlf19910726/article/details/79312939

2018-02-11

Perceptrons An introduction to computational geometry, expanded edition,1988

Perceptrons An introduction to computational geometry, expanded edition,1988 马文·明斯基(Marvin Minsky), 西摩尔·帕普特(Seymour Papert)

2018-02-11

CUDA并行排序(2)——一维Double型10000

double a,b,c; char d,e; int size=20; double arr[size][3];

2017-12-15

CUDA并行排序(2)——二维Double型——分成大小两组

0.000000 6.100000 12.200000 18.300000 24.400000 30.500000 36.600000 42.700000 48.800000 1.000000 7.100000 13.200000 19.300000 25.400000 31.500000 37.600000 43.700000 49.800000

2017-12-14

CUDA并行排序(2)——一维Double型

Sorted 100000000 Double elems in 1803.735 ms (55.441 Melems/sec)

2017-12-07

CUDA并行排序(1)——整数

// 1. A small-set insertion sort. We do this on any set with <=32 elements // 2. A partitioning kernel, which - given a pivot - separates an input // array into elements <=pivot, and >pivot. Two quicksorts will then // be launched to resolve each of these. // 3. A quicksort co-ordinator, which figures out what kernels to launch // and when.

2017-12-06

空空如也

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

TA关注的人

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