Accessing one mathcad script from another
Hi,
I need your help in solving the following problem -
Say, i have a main program worksheet ( Say A.xmcd ) where i have my inputs . Now my function ( set of calculations) is in another sheet ( Say B.xmcd )..
Now i need to pass the inputs from A.xcmd to B.xcmd and receive the ouput from B to A .
Say we have a very simple program in A.xcmd
input
x= 3
Function
f=cube (x)
B.xcmd
x1=x
value = x1*x1*x1
return(value)
The above stated are not exactly the syntax but a pseudo code .
How do i link A nd B from A ???

