Advertisement
Guest User

Untitled

a guest
Oct 1st, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. ff = Compile[x, x, RuntimeOptions -> "EvaluateSymbolically" -> False]
  2.  
  3. ff[a]
  4.  
  5. CompiledFunction[..][a]
  6.  
  7. ff[1 - a]
  8.  
  9. CompiledFunction::cfsa: Argument 1-a at position 1 should be a machine-size real number. >>
  10.  
  11. ff[1-a]/.a->2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement