|
From: | fibonacci4 |
Subject: | Re: How to draw an ellipse using Octave |
Date: | Wed, 16 Jan 2019 15:48:11 +0100 |
User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 |
Am 16.01.19 um 05:28 schrieb Alphonce
Owayo:
figure(1); clf; hold on; drawEllipse([0.3 0.2 0.4 0.3 28]); axis equal; Hi Alphonce, drawEllipse is part of the package geometry. You have to install it and load it if you want to use it. If it is installed, this works: load pkg geometry; figure(1); clf; hold on; drawEllipse([0.3 0.2 0.4 0.3 28]); axis equal; Read the documentation about installing and loading packages! Ciao Karl |
[Prev in Thread] | Current Thread | [Next in Thread] |