Search found 9 matches

Go to advanced search

by mjs
03 Mar 2021, 19:18
Forum: Helpdesk
Topic: Visualization using Ubuntu
Replies: 6
Views: 9124

Re: Visualization using Ubuntu

It works now! Thanks so much!
by mjs
26 Feb 2021, 06:16
Forum: Helpdesk
Topic: Visualization using Ubuntu
Replies: 6
Views: 9124

Re: Visualization using Ubuntu

I tried to implement the workaround for visualization mentioned in the previous reply, but it didn't do anything. After doing a little bit of troubleshooting on my own, I managed to get Chrome to open up every time I attempt to visualize something, but that's it -- no picture appears. Are there any ...
by mjs
26 Mar 2019, 14:14
Forum: Helpdesk
Topic: The root_system function
Replies: 8
Views: 6595

Re: The root_system function

Great, thank you for your help!
by mjs
26 Mar 2019, 10:57
Forum: Helpdesk
Topic: The root_system function
Replies: 8
Views: 6595

Re: The root_system function

Ah, I see. Here is the embarrassingly slow code that I came up with to construct the vector e_l-e_{l+i} for a given l and i: my $neweq = new Vector([0]); for(my $j=0;$j<$n;$j++){ if($j==$l){ $neweq = $neweq|new Vector([1]); } elsif($j==$l+$i){ $neweq = $neweq|new Vector([-1]); } else { $neweq = $new...
by mjs
26 Mar 2019, 10:23
Forum: Helpdesk
Topic: Using modules with polymake
Replies: 2
Views: 4074

Re: Using modules with polymake

This worked. Thank you for your help!
by mjs
26 Mar 2019, 10:20
Forum: Helpdesk
Topic: The root_system function
Replies: 8
Views: 6595

Re: The root_system function

I am using Polymake version 3.0 on the Ubuntu Linux subsystem for Windows 10. I installed polymake through the Ubuntu package manager.
by mjs
22 Mar 2019, 07:39
Forum: Helpdesk
Topic: The root_system function
Replies: 8
Views: 6595

Re: The root_system function

Thanks for the response! In my original post I was transcribing and I made an error -- I was actually in the polytope application. So this does not seem to explain my problem.
by mjs
21 Mar 2019, 23:00
Forum: Helpdesk
Topic: The root_system function
Replies: 8
Views: 6595

The root_system function

I am writing a script which involves constructing the vectors e_i-e_j for certain values of i and j. My current code involves a lot of looping and takes a long time, and I am sure that there must be a better way. I saw in the polymake documentation that there is a function called root_system which r...
by mjs
15 Mar 2019, 04:25
Forum: Helpdesk
Topic: Using modules with polymake
Replies: 2
Views: 4074

Using modules with polymake

I have what I suspect is a newbie question regarding writing perl modules for use in the polymake shell. Here is a minimal broken example that demonstrates my problem. I save the following in a file "example.pm" in my working directory: package example; use strict; use warnings; use applic...

Go to advanced search