Post Reply 
CAS inside prgm ?!
02-05-2015, 09:15 PM
Post: #1
CAS inside prgm ?!
Hi,

I'd like something these way :
Code:

export inv_laplace(k)
begin
  local f;
  f:=CAS(ilaplace(subst(expr("F"+k),'X','x')));
  return subst(f,'x','X');
end;

But it doesn't work like these...

I try with a CAS program but without success...

Code:

#cas
Inverse_laplace(k):=
BEGIN
  local f;
  f:=ilaplace(EXPR("F"+k+"(x)"));
  return subst(f,'x','X');
END;
#end

Can you help me to learn good practise ? What can we realy do with CAS program for that kind of problem ?

Thank you for your help.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
CAS inside prgm ?! - dg1969 - 02-05-2015 09:15 PM
RE: CAS inside prgm ?! - Han - 02-05-2015, 09:30 PM
RE: CAS inside prgm ?! - dg1969 - 02-07-2015, 05:19 PM



User(s) browsing this thread: 1 Guest(s)