ne starts the new Juyyter notebook
> $HOME/sage/sage --notebook=jupyter --ip='*' --port=8000 >& $LOG
> snip off ---
>
> If you edit it according to the comments (and reboot the VM) you can
> switch between the two
>
>
>
> On Tuesd
t;
> If you edit it according to the comments (and reboot the VM) you can
> switch between the two
>
>
>
> On Tuesday, March 8, 2016 at 3:49:33 PM UTC+1, jamedrano wrote:
>>
>> I tried to create interactive graphs in Sage 7.0 virtual machine, but all
>> I get is
I tried to create interactive graphs in Sage 7.0 virtual machine, but all I
get is a bunch of HTML code, am I doing something wrong? Is there a way
to use Sage 7.0 with the old worksheet interfase?
Thanks for any help.
--
You received this message because you are subscribed to the Google Gro
Hi, is there a way to load data into Sage when I´m running it from a
virtual machine in VirtualBox and the data is in Windows? Thanks.
--
You received this message because you are subscribed to the Google Groups
"sage-support" group.
To unsubscribe from this group and stop receiving emails from
I'm trying to use Sage for optimization using the Lagrange multipliers
method, but it does not solve this apparently simple problem:
var('x y l')
f = x + 2*y
g = 2*x^(1/4)*y^(1/2)
L = f - l * (16 - g)
dfdx = L.diff(x)
dfdy = L.diff(y)
dfdl = L.diff(l)
solve([dfdx == 0, dfdy == 0, dfdl == 0
Hello. I´m using Sage to teach some network algorithms. The strange thing is
that when I define a graph using the weighted adjacency matrix, I'm able to get
the min_spanning_tree but not the shortest path. However, when I define the
graph using the dictionary form, everything works OK. Here's w