I have a linear but complex function in R, let's say
estimate.value <- function(x, y, z)
Now I have an output value and I want to estimate the input parameters one or two at a time. How do I do that?
e.g. I know that output value is 5 and and x=2, y=3 then how do I estimate z? or I know output value is 5 and only know x=2, how do I estimate x and y?