Ronan

1396 Reputation

16 Badges

14 years, 18 days
East Grinstead, United Kingdom

MaplePrimes Activity


These are replies submitted by Ronan

@acer Thank you. Late last night I found another way. Which is what I what to achieve. Could you comment on potential pitfalls incase I am missing something.
 

restart

interface(version)

`Standard Worksheet Interface, Maple 2026.0, Windows 10, March 05 2026 Build ID 2001916`

(1)

TM := module () export Cartline, Parmline; global Cartvars, Parmvars;  Cartvars := [:-x, :-y, :-z]; Parmvars := [:-alpha, :-beta, :-rho]; Cartline := proc (p1::list, p2::list, { vars := Cartvars }) local l; global Cartvars; l := (p2[2]-p1[2])*vars[1]+(p1[1]-p2[1])*vars[2]-p2[2]*p1[1]+p1[2]*p2[1]; return l end proc; Parmline := proc (p1::list, p2::list, { varp := Parmvars }) local l; global Parmvars; l := `~`[`+`](p1, varp[1]*`<,>`(p2-p1)); return l end proc end module

maplemint(TM)

TM:-Cartline([4, 3], [-8, 4])

x+12*y-40

(2)

TM:-Cartline([4, 3], [-8, 4], vars = [x, y])

x+12*y-40

(3)

NULL

TM:-Parmline([4, 3], [-8, 4])

Vector[column](%id = 36893490302681822020)

(4)

TM:-Parmline([4, 3], [-8, 4], varp = [kappa])

Vector[column](%id = 36893490302722994652)

(5)

Change globally 

Cartvars := [X, Y, Z]; Parmvars := [eta, mu, nu]

[eta, mu, nu]

(6)

TM:-Cartline([4, 3], [-8, 4])

X+12*Y-40

(7)

TM:-Cartline([4, 3], [-8, 4], vars = [r, s])

r+12*s-40

(8)

TM:-Parmline([4, 3], [-8, 4])

Vector[column](%id = 36893490302722985724)

(9)

NULL


 

Download 2026-03-26_Q_Module_Generic_Variables-R1.mw

Can you see where the shortcut points to for the "old/former" interface.  The see if you can find a similat executable in the Maple 2026 folders.

Edit:- for windows 10 you can probe the shortcuts in the start menu from here.

C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Maple 2024

@dharr  @sand15  Thank you. Bothe answere are very helpful. And I like the link to @acer  comment.

I am getting the same error. What browser are you using? I am using edge on win10 & 11.

I have also noticed the site has been wery slow and hangs a lot since at least mid December. Has anyony else being experiencing this?

edit:- I get this message a lot

@minhthien2016  Like this

sort((x - 1)^2 + (y + 4)^2 + (z - 3)^2 - 56 = 0, [x, y, z])
(x - 1)^2 + (y + 4)^2 + (z - 3)^2 - 56 = 0

Would this help?

with(CurveFitting);

   [ArrayInterpolation, BSpline, BSplineCurve, Interactive, 
     LeastSquares, Lowess, PolynomialInterpolation, 
     RationalInterpolation, Spline, ThieleInterpolation]

@sand15 I see you are using an older version of Maple. In2024.2 this is the processing time.

memory used=69.41MiB, alloc change=0 bytes, cpu time=687.00ms, real time=745.00ms, gc time=0ns

You might get some help from the official Solidworks site or Cadmunity CADmunity 

@salim-barzani Thank you. I appreciate the acknowledgement.

  If an answer is liked/voted up by the OP, how about an astricks or some symbol appear automatically or the color change to say light blue for each answer liked by the Op.

@sand15 I only know this because I asked the same question a coulpe of years ago. 

@Scot Gould I had forgotten about that. I this you pointed this out to me or something similar about 6 months ago.

@acer I will use the 3rd option. I didn't know about andseq.  Sometimes the matrix elements can grow very large when radicals are involved.

@nm Thank you that works well.

@Christopher2222  That is really useful I am studying rotations SO(3) and I want to investigate to combination of different rotations.

1 2 3 4 5 6 7 Last Page 1 of 33