对于一个作业的报告,我想在报告中包括类似这样的功能,但是似乎有一些错误,我找不到它。该函数在控制台中运行,但是R markdown表示: 解析错误(text = x,srcfile = src)::7:11:意外的'}'6:+ x <-x / 2 7:} ^调用:...-> parse_all-> parse_all.character->解析
这是功能:
{r echo=FALSE}
collatz <- function(x){
+ steps <- c();
+ stepCounter <- 0;
+ while(x>1){
+ if(x%%2==0){
+ x <- x/2
+ } else {
+ x <- 3*x+1
}
+ stepCounter <- stepCounter+1
+ steps[stepCounter] <- x}
+ print(paste(c("steps:", steps), collapse=" "))
+ print(paste("number of iterations:",stepCounter))}
答案 0 :(得分:0)
您的文档中是否有class MyClassI
{
public:
virtual std::pair<decayed_iterator<int>, decayed_iterator<int>> Numbers() const = 0;
}
?删除它们会生成工作文档。
+