longqnh

10 Reputation

One Badge

9 years, 41 days

MaplePrimes Activity


These are questions asked by longqnh

I try to connect Maple with C# by using OpenMaple at http://www.mapleprimes.com/posts/38048-Using-OpenMaple-With-C

But OpenMaple just excuted in x64 mode, I want to excute OpenMaple in "Any CPU" mode. How can I do this?

P/s: I'm using Windows 7 Ultimate x64 and Visual Studio Ultimate 2013.

Hi all,

I drew a undirected graph using Maple

restart;
with(GraphTheory);
with(SpecialGraphs);
with(RandomGraphs);
G := Graph(undirected, {[{1, 2}, 4], {1, 4}, {2, 3}, {2, 5}, {3, 4}});
DrawGraph(G, style = circle);

I want to import this graph to picturebox or panel on C#, please help me!

Page 1 of 1