jeremaple

Jeremy Chamilliard

45 Reputation

2 Badges

3 years, 316 days
Maplesoft
Tech Support
Waterloo, Denmark

MaplePrimes Activity


These are Posts that have been published by jeremaple

A customer wondered if they could create a plot of points on a polar axis, and if they could zoom a polar plot.

 We suggested a couple of options for making these plots, and (although zooming is not supported in polar coordinates in Maple 2020) an alternative to manually scale a polar plot.

Hope it's a useful demonstration.

rho := [seq(i, i = 1 .. 10)];
theta := [seq((2*j*Pi)/10, j = 1 .. 10)];
nby2 := zip(`[]`, rho, theta);

# Method A of plotting points in polar basis
with(plots);
pointplot(rho, theta, coords = polar, axiscoordinates = polar, connect = false, color = "HotPink", symbol = soliddiamond);

#Method B to create polar point plot
polarplot(nby2, style = point, color = "green", symbol = solidbox);

#narrow view of polar plot around first point as a substitute for zooming
polarplot(nby2, style = point, color = "OrangeRed", symbol = solidcircle, coordinateview = [0 .. 2, Pi/5 - Pi/20 .. Pi/5 + Pi/20])

Download polar-point-plot-with-zoom.mw

A customer wondered if it was possible to create 2-line tickmarks on Maple plots like so

 

 

We achieved this using typeset, fractions, and backticks. Worksheet follows.

2line-tickmarks-mprimes.mw

 

Page 1 of 1