<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<br>
<font face="Courier New, Courier, monospace">Heinz,<br>
</font><br>
<blockquote cite="mid:8AFE7C27-D8DF-4852-853B-735F394281B0@me.com"
type="cite">gca().rotation_angles = [180 0] is perfect for me.
270° West is correctly on the left hand side !
<div class=""><br class="">
</div>
<div class="">But I get a mess with a multiple plot.....I want the
degrees only at the outermost circle</div>
<div class="">Heinz</div>
<div class=""><br class="">
</div>
<div class="">for i=1:6; ..</div>
<div class="">polarplot(theta,MM(:,i),style=i); ...</div>
<div class="">end;</div>
<div class="">gca().rotation_angles = [180 0]<br>
</div>
</blockquote>
<font face="Courier New, Courier, monospace"><br>
Sorry, I don't know how to fix that elegantly... except a brute
force method.<br>
<br>
Try the following. Take as an example with two graphs:</font><br>
<pre style="font-family:Monospaced;font-style:normal;font-size:14.0;"><span style="color:rgb(0,0,0);">clf</span>
<span style="color:rgb(0,0,0);">x</span> <span style="color:rgb(92,92,92);">=</span> <span style="color:rgb(74,85,219);">(</span><span style="color:rgb(188,143,143);">0</span><span style="color:rgb(255,170,0);">:</span><span style="color:rgb(188,143,143);">360</span><span style="color:rgb(74,85,219);">)</span><span style="color:rgb(92,92,92);">/</span><span style="color:rgb(188,143,143);">180</span><span style="color:rgb(92,92,92);">*</span><span style="color:rgb(218,112,214);">%pi</span><span style="color:rgb(0,0,0);">;</span>
<span style="color:rgb(0,0,0);">y</span> <span style="color:rgb(92,92,92);">=</span> <span style="color:rgb(188,143,143);">0.5</span><span style="color:rgb(92,92,92);">*</span><span style="color:rgb(74,85,219);">(</span><span style="color:rgb(188,143,143);">1</span> <span style="color:rgb(92,92,92);">+</span> <span style="color:rgb(50,185,185);">cos</span><span style="color:rgb(74,85,219);">(</span><span style="color:rgb(0,0,0);">x</span><span style="color:rgb(74,85,219);">)</span><span style="color:rgb(74,85,219);">)</span><span style="color:rgb(0,0,0);">;</span>
<span style="color:rgb(0,0,0);">z</span> <span style="color:rgb(92,92,92);">=</span> <span style="color:rgb(188,143,143);">0.375</span> <span style="color:rgb(92,92,92);">+</span> <span style="color:rgb(188,143,143);">0.675</span><span style="color:rgb(92,92,92);">*</span><span style="color:rgb(50,185,185);">cos</span><span style="color:rgb(74,85,219);">(</span><span style="color:rgb(0,0,0);">x</span><span style="color:rgb(74,85,219);">)</span><span style="color:rgb(0,0,0);">;</span>
<span style="color:rgb(0,0,0);">polarplot</span><span style="color:rgb(74,85,219);">(</span><span style="color:rgb(0,0,0);">x</span><span style="color:rgb(0,0,0);">,</span><span style="color:rgb(0,0,0);">z</span><span style="color:rgb(74,85,219);">)</span>
<span style="color:rgb(0,0,0);">polarplot</span><span style="color:rgb(74,85,219);">(</span><span style="color:rgb(0,0,0);">x</span><span style="color:rgb(0,0,0);">,</span><span style="color:rgb(0,0,0);">y</span><span style="color:rgb(74,85,219);">)</span></pre>
<font face="Courier New, Courier, monospace"><br>
Then,<br>
<br>
gca().children<br>
<br>
yields <br>
<br>
ans =<br>
<br>
70 by 1 matrix of handles:<br>
==========================<br>
Text <br>
Segs <br>
Text <br>
Segs <br>
<br>
(...)<br>
<br>
I pressume that there are 70 "children" (any subordinated object)
whose handles are organized as a matrix (or rather a column
vector...), so I retrieve their handles writing<br>
<br>
gca().children(n)<br>
<br>
where n is a number between 1 and 70. They should contain some
interesting properties.<br>
<br>
For instance: </font><br>
<font face="Courier New, Courier, monospace"><font face="Courier
New, Courier, monospace"><br>
gca().children(1)<br>
<br>
yields<br>
<br>
</font>Handle of type "Text" with properties:<br>
======================================<br>
parent: Axes<br>
children: []<br>
visible = "on"<br>
text = "330"<br>
alignment = "left"<br>
<br>
(...)<br>
<br>
The "330" suggests this property is which controls at least one of
both (in my case) 330's, so <br>
<br>
gca().children(1).visible = "off" <br>
<br>
should make it invisible... and it does!<br>
<br>
Then you could create a loop varying n so to make them all
disappear. As a previous task, check which graph reaches the
maximum and draw it at the end, so that you remove all the degree
marks up to the graph before the last one.<br>
<br>
I'm sure there must be a better way to do this, but in the
emergency it might do the job. If you find a better solution,
please comment it.<br>
<br>
<br>
Federico Miyara<br>
<br>
</font><br>
<div class="moz-cite-prefix">On 23/03/2019 19:59, Heinz Nabielek
wrote:<br>
</div>
<blockquote cite="mid:8AFE7C27-D8DF-4852-853B-735F394281B0@me.com"
type="cite">gca().rotation_angles = [180 0] is perfect for me.
270° West is correctly on the left hand side !
<div class=""><br class="">
</div>
<div class="">But I get a mess with a multiple plot.....I want the
degrees only at the outermost circle</div>
<div class="">Heinz</div>
<div class=""><br class="">
</div>
<div class="">for i=1:6; ..</div>
<div class="">polarplot(theta,MM(:,i),style=i); ...</div>
<div class="">end;</div>
<div class="">gca().rotation_angles = [180 0]<br>
</div>
</blockquote>
<br>
<div id="DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2"><br /> <table style="border-top: 1px solid #D3D4DE;">
<tr>
<td style="width: 55px; padding-top: 18px;"><a href="https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient" target="_blank"><img src="https://ipmcdn.avast.com/images/icons/icon-envelope-tick-round-orange-animated-no-repeat-v1.gif" alt="" width="46" height="29" style="width: 46px; height: 29px;" /></a></td>
<td style="width: 470px; padding-top: 17px; color: #41424e; font-size: 13px; font-family: Arial, Helvetica, sans-serif; line-height: 18px;">Libre de virus. <a href="https://www.avast.com/sig-email?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=emailclient" target="_blank" style="color: #4453ea;">www.avast.com</a> </td>
</tr>
</table>
<a href="#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2" width="1" height="1"> </a></div></body>
</html>