+ - 在R中的平方根之前

时间:2016-11-25 04:00:15

标签: r function symbols

我正在尝试用R编写一个等式(见下面的代码)。我想知道如何在代码中 sqrt()之前正确使用 + -

x <- seq(0,1,by=0.01)
y <- %+-%sqrt((.5^2)-(x-.5)^2)+.5

2 个答案:

答案 0 :(得分:5)

需要单独绘制它们,但%+-%运算符可用于plotmath表达式。然而,需要两个值两侧,因此需要使用非打印phantom():

x <- c( seq(0,1,by=0.01) )
y <- c( sqrt((.5^2)-(x-.5)^2)+.5, -sqrt((.5^2)-(x-.5)^2)+.5)
plot( rep(x,times=2), y)
title(main= bquote( phantom(0) %+-% sqrt((.5^2)-(x-.5)^2)+.5))

enter image description here

答案 1 :(得分:1)

您可能希望以参数形式获得等式,而不需要+ - of sqrt。

theta <- seq(0,2*pi,0.01)
x <- 0.5 + 0.5*sin(theta)
y <- 0.5 + 0.5*cos(theta)
plot(x, y)
title(main= substitute(paste('x=(1+sin',theta,')/2, y=(1+cos', theta, ')/2')))

enter image description here

试试这个:

draw.circle <- function(stepsize=.01) {
  theta <- seq(0,2*pi,by=stepsize) 
  x <- 0.5 + 0.5*sin(theta) 
  y <- 0.5 + 0.5*cos(theta) 
  plot(x, y,type="n",xlim = c(0,1),ylim = c(0,1)) 
  segments(x,y,.5,.5)
}

draw.circle(.01)

enter image description here

draw.circle(.02)

enter image description here

draw.circle(.05)

enter image description here