上一页 1 ··· 69 70 71 72 73 74 75 76 77 ··· 96 下一页
摘要: IfcRamp A ramp is a vertical passageway which provides a human circulation link between one floor level and another floor level at a different elevati 阅读全文
posted @ 2020-01-04 14:51 西北逍遥 阅读(327) 评论(0) 推荐(0)
摘要: C++查找某个范围内的素数——最基本的方法 prime_number.cpp 235 711 13 1719 23 29 3137 41 43 47 5359 61 67 71 73 7983 89 97 101 103 107 109113 127 131 137 139 149 151 1571 阅读全文
posted @ 2020-01-03 14:45 西北逍遥 阅读(4382) 评论(0) 推荐(0)
摘要: C++ 查找第一个匹配元素(Search First Matching Element) algostuff.hpp search_element.cpp list: 1 2 3 4 5 6 7 8 9 1 2 3 4 5 6 7 8 94 5 6 7 8 9 1 2 3 4请按任意键继续. . . 阅读全文
posted @ 2020-01-03 09:17 西北逍遥 阅读(284) 评论(0) 推荐(0)
摘要: C++ minmax_element 最大值 最小值 algostuff.hpp minmax1.cpp 2 3 4 5 6 -3 -2 -1 0 1 2 3 4 5 6min element: -3max element: 6min: -3max: 6distance: 9minimum of a 阅读全文
posted @ 2020-01-02 20:37 西北逍遥 阅读(1551) 评论(0) 推荐(0)
摘要: C++ 元素计数 count() algostuff.hpp testCount.cpp vec1: 1 2 3 4 5 6 7 8 9number of elements equal to 4: 1number of elements with even value: 4number of ele 阅读全文
posted @ 2020-01-02 20:04 西北逍遥 阅读(6672) 评论(0) 推荐(0)
摘要: C++ for_each() 算法 for_each()算法非常灵活,它允许你以不同的方式访问、处理、修改每一个元素,自C++11起,for循环提供了更方便更自然的行为,因此,for_each()恐将日渐丧失其重要性。 algostuff.hpp main.cpp 1 2 3 4 5 6 7 8 9 阅读全文
posted @ 2020-01-01 19:43 西北逍遥 阅读(3308) 评论(0) 推荐(0)
摘要: 在ubuntu16 anaconda上配置 caffe2,因为caffe2已经和pytorch合并了,所以配置pytorch即可。 启动Anaconda环境 安装依赖库 pip install numpy ninja pyyaml mkl mkl-include setuptools cmake c 阅读全文
posted @ 2019-12-31 19:05 西北逍遥 阅读(455) 评论(0) 推荐(0)
摘要: star@xmatrix:~$ star@xmatrix:~$ conda create -n wind2 python=3.6 Solving environment: done ==> WARNING: A newer version of conda exists. <== current version: 4.4.10 latest version: 4.8.0 Please update 阅读全文
posted @ 2019-12-31 10:31 西北逍遥 阅读(348) 评论(0) 推荐(0)
摘要: C++ Stream(串流)迭代器 4277-51234567891 < 2 < 3 < 4 < 5 < 6 < 7 < 8 < 9 <请按任意键继续. . . 代码参考:C++标准库(第2版) 代码参考:C++标准库(第2版) 代码参考:C++标准库(第2版) 阅读全文
posted @ 2019-12-30 19:54 西北逍遥 阅读(418) 评论(0) 推荐(0)
摘要: C++ deque const_iterator const_reverse_iterator运用实例 23456 65432 请按任意键继续. . . 代码参考:C++标准库(第2版) 代码参考:C++标准库(第2版) 阅读全文
posted @ 2019-12-29 16:03 西北逍遥 阅读(374) 评论(0) 推荐(0)
摘要: iter_swap函数用来交换两个迭代器所指向的元素值,迭代器类型不必相同,但其所指的值必须可以相互赋值(assignable)。 myprint.hpp test.cpp 1 2 3 4 5 6 7 8 92 1 3 4 5 6 7 8 99 1 3 4 5 6 7 8 2请按任意键继续. . . 阅读全文
posted @ 2019-12-28 19:42 西北逍遥 阅读(1123) 评论(0) 推荐(0)
摘要: C++ distance() 处理迭代器之间的距离 difference between begining and 5: 8请按任意键继续. . . 代码参考:C++标准库(第2版) 阅读全文
posted @ 2019-12-28 19:27 西北逍遥 阅读(3946) 评论(2) 推荐(1)
摘要: C++ advance()运用案例 032请按任意键继续. . . 代码参考:C++标准库(第2版) 代码参考:C++标准库(第2版) 代码参考:C++标准库(第2版) 阅读全文
posted @ 2019-12-27 16:45 西北逍遥 阅读(674) 评论(0) 推荐(0)
摘要: ubuntu anaconda tensorrt (wind1) star@xmatrix:~$ (wind1) star@xmatrix:~$ (wind1) star@xmatrix:~$ cd TensorRT (wind1) star@xmatrix:~/TensorRT$ (wind1) 阅读全文
posted @ 2019-12-26 16:57 西北逍遥 阅读(881) 评论(0) 推荐(0)
摘要: 1、下载对应的版本 NVIDIA TensorRT 7.x Download NVIDIA TensorRT is a platform for high performance deep learning inference. TensorRT works across all NVIDIA GP 阅读全文
posted @ 2019-12-26 11:00 西北逍遥 阅读(824) 评论(0) 推荐(0)
摘要: 1、下载 https://github.com/Kitware/CMake/releases 2、解压 star@xmatrix:~/CMake/CMake-3.16.0$ tar -zxvf CMake-3.16.0.tar.gzcd CMake-3.16.0 3、配置 4、编译 make 5、安 阅读全文
posted @ 2019-12-26 10:09 西北逍遥 阅读(1033) 评论(0) 推荐(0)
摘要: 早晨找到了17年年初,小胡做的塔吊吊装模拟,截几张图,记录一下在开发施工过程模拟系统过程中那些艰难探索的日子。 阅读全文
posted @ 2019-12-25 08:27 西北逍遥 阅读(643) 评论(0) 推荐(0)
摘要: ubuntu查看cuda、cuDNN版本 cuda: #cat /usr/local/cuda/version.txt 或者 nvcc -V cuDNN: #cat /usr/local/cuda/include/cudnn.h | grep CUDNN_MAJOR -A 2 GNU make cm 阅读全文
posted @ 2019-12-24 15:56 西北逍遥 阅读(2524) 评论(0) 推荐(0)
摘要: 1、打开SteamVR设备管理软件 ****************确保VR设备都已连接上 2、打开unity3d,在Asset Store中搜索SteamVR,导入SteamVR Plugin包 3、建立场景,运行,戴上眼镜,浏览场景 阅读全文
posted @ 2019-12-23 22:14 西北逍遥 阅读(710) 评论(0) 推荐(0)
摘要: star@xmatrix:~/Anaconda$ star@xmatrix:~/Anaconda$ conda create -n wind1 python=3.6Solving environment: done==> WARNING: A newer version of conda exist 阅读全文
posted @ 2019-12-22 14:36 西北逍遥 阅读(991) 评论(0) 推荐(0)
摘要: star@xmatrix:~$ lshwWARNING: you should run this program as super-user.xmatrix description: Computer width: 64 bits capabilities: vsyscall32 *-core de 阅读全文
posted @ 2019-12-22 14:24 西北逍遥 阅读(598) 评论(0) 推荐(0)
摘要: ubuntu连接多个realsense d435 阅读全文
posted @ 2019-12-21 19:28 西北逍遥 阅读(1503) 评论(0) 推荐(0)
摘要: C++ unordered_set运用实例 17 1 2 19 11 3 13 5 7 23 29 31 37 4117 1 2 19 11 3 13 5 7 23 29 31 37 41 -7 33 -1117 1 2 19 11 3 13 5 7 23 29 31 37 41 -7 -1117 阅读全文
posted @ 2019-12-20 10:39 西北逍遥 阅读(4431) 评论(0) 推荐(0)
摘要: C++ Multimap运用实例—查找元素 3 97 3请按任意键继续. . . 代码参考:C++标准库(第2版) 阅读全文
posted @ 2019-12-19 20:09 西北逍遥 阅读(860) 评论(0) 推荐(0)
摘要: C++ Multimap运用实例 english german car Auto clever raffiniert day Tag smart elegant smart raffiniert smart klug strange fremd strange seltsam trait Merkm 阅读全文
posted @ 2019-12-19 19:45 西北逍遥 阅读(875) 评论(0) 推荐(0)
摘要: C++ Map运用实例 stock1:BASF price:369.5stock1:BMW price:834stock1:Daimler price:819stock1:Simements price:842.2stock1:VW price:413.5 stock1:BASF price:739 阅读全文
posted @ 2019-12-18 20:54 西北逍遥 阅读(1118) 评论(0) 推荐(0)
摘要: C++ Set运用实例 6 5 4 3 2 14 already exists1 2 3 4 5 61 element(s) removed3 4 6请按任意键继续. . . 代码参考:C++标准库(第2版) 阅读全文
posted @ 2019-12-17 19:16 西北逍遥 阅读(534) 评论(0) 推荐(0)
摘要: C++ list运用实例 list1:0 1 2 3 4 5list2:5 4 3 2 1 0 list1:list2:5 4 0 1 2 3 4 5 3 2 1 0 list1:list2:4 0 1 2 3 4 5 3 2 1 0 5 list1:0 0 1 1 2 2 3 3 4 4 5 5l 阅读全文
posted @ 2019-12-16 19:49 西北逍遥 阅读(485) 评论(0) 推荐(0)
摘要: C++ vector C++, test1 test2 test3 test4max_size:461168601842738790size:5capacity:6C++, test3 test2 TEST test1 Javasize:6capacity:6size:4capacity:4请按任意 阅读全文
posted @ 2019-12-15 20:08 西北逍遥 阅读(573) 评论(0) 推荐(0)
摘要: myprint.hpp test.cpp 3 7 9 5 2 0 0 0 0 03 7 9 5 2 0 0 0 555 666sum:1247 -3 -7 -9 -5 -2 0 0 0 -555 -666请按任意键继续. . . 阅读全文
posted @ 2019-12-14 20:12 西北逍遥 阅读(557) 评论(0) 推荐(0)
上一页 1 ··· 69 70 71 72 73 74 75 76 77 ··· 96 下一页