Skip to content

Commit

Permalink
update pyobject method for more recent pytave, add doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
cbm755 committed May 19, 2017
1 parent 1d18f52 commit 0b0f13d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions inst/@sym/pyobject.m
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%% Copyright (C) 2016 Colin B. Macdonald
%% Copyright (C) 2016-2017 Colin B. Macdonald
%%
%% This file is part of OctSymPy.
%%
Expand All @@ -24,10 +24,11 @@
%% Example:
%% @example
%% @group
%% @c doctest +SKIP_IF(~strcmp(sympref('ipc'), 'native')))
%% syms x
%% f = 2*sin(x/2);
%% pyobject(f)
%% @result{} ans = [pyobject ...]
%% @result{} ans = [Python object of type sympy.core.mul.Mul]
%%
%% 2*sin(x/2)
%%
Expand All @@ -39,7 +40,7 @@

function y = pyobject (x)

y = py.sympy.S (char (x));
y = py.sympy.S (sympy (x));

% Above is nice because it needs no imports. But downside is some
% things like NonElementaryIntegral and MatrixElement will fail. See
Expand Down

0 comments on commit 0b0f13d

Please sign in to comment.