Skip to main content
added 47 characters in body
Source Link
Ulrich Neumann
  • 62.9k
  • 2
  • 30
  • 68

I think the easiest way would be to define(name) the pure function f

f = Sqrt[-1 + Tanh[#1 - #2]^2] &

this givesand use it accordingly

f[x,y] 
(*Sqrt[-1 + Tanh[x - y]^2]*)

I think the easiest way would be

f = Sqrt[-1 + Tanh[#1 - #2]^2] &

this gives

f[x,y] 
(*Sqrt[-1 + Tanh[x - y]^2]*)

I think the easiest way would be to define(name) the pure function f

f = Sqrt[-1 + Tanh[#1 - #2]^2] &

and use it accordingly

f[x,y] 
(*Sqrt[-1 + Tanh[x - y]^2]*)
Source Link
Ulrich Neumann
  • 62.9k
  • 2
  • 30
  • 68

I think the easiest way would be

f = Sqrt[-1 + Tanh[#1 - #2]^2] &

this gives

f[x,y] 
(*Sqrt[-1 + Tanh[x - y]^2]*)