上一页 1 ··· 8 9 10 11 12
摘要: 关于一个type, 有numeric(创建), as.numeric(转换)和is.numeric(判断)这三个函数. 所以numeric与double 来看看这三类函数表现有什么区别. numeric与double函数没有区别. as.numeric与as.double也没有区别. 但is.num 阅读全文
posted @ 2020-10-13 14:31 Tokubara 阅读(1681) 评论(0) 推荐(0) 编辑
摘要: 引入的几个问题 问题一 x <- c(a = 1, b = 2) is.vector(x) ## TRUE all.equal(x, as.vector(x)) ## FALSE x本来就是vector, 输出也证实了这一点, 怎么说不相等呢? 问题二 x<-list(1,"abc") is.vec 阅读全文
posted @ 2020-10-13 14:28 Tokubara 阅读(532) 评论(0) 推荐(0) 编辑
摘要: 花了2个多小时debug. 难受, 想哭. #include <cstdio> #include <cstdlib> #include <iostream> #include <utility> #include <queue> #include <cmath> #include <algorith 阅读全文
posted @ 2020-10-12 23:32 Tokubara 阅读(62) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12