Skip to content
Prev 275797 / 398506 Next

3d graph to show matrix of z matrix values

Your z values are all NA.  What are you expecting to see?

*z values*: 
i <- 0
    for (el.x in x)
    { 
      i <- i+1
	    j <- 1	
	    for (el.y in y)
		  {  
        if( el.x==0 & el.y==0) *z[i,j]* <- Emax + B
        if(!(el.x==0 & el.y==0)) *z[i,j]* <- model(el.x, el.y, m1, m2, dm1,
dm2, alpha)
        j <- j+1
      }
    }




--
View this message in context: http://r.789695.n4.nabble.com/3d-graph-to-show-matrix-of-z-matrix-values-tp3948174p3948273.html
Sent from the R help mailing list archive at Nabble.com.