| Exh2d | R Documentation |
3d Exhausive Validification
func |
If a function is used to define the validification it should return a boolean vector with 3 independent variables in order e.g. x,y,z |
contour.function, ~~~
ImpPlot2d, ~~~
Exh2d(func = function(x,y) x^2+y^2<=sqrt(3^2+3^2),x=seq(from = -3, to = 3,by=.6),y=seq(from = -3, to = 3,by=.6))
## The function is currently defined as
function(func, x = seq(from = -5,to = 5, by=.1),
y = seq(from = -5,to = 5, by=.1)){
message('start exhausive calculation')
v=NULL
for(i in x){
for(j in y){
if(func(i,j)==T){
v<-rbind(v,c(i,j))
}
}
}
message('calculation finished')
v
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.