Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.graphics.apps.gnuplot > #4362

Re: Radiaton Characteristics using Gnuplot

Path csiph.com!fu-berlin.de!uni-berlin.de!news.dfncis.de!not-for-mail
From Hans-Bernhard Bröker <HBBroeker@t-online.de>
Newsgroups comp.graphics.apps.gnuplot
Subject Re: Radiaton Characteristics using Gnuplot
Date Mon, 27 Jul 2020 20:58:31 +0200
Lines 27
Message-ID <ho8meuF7f1jU1@mid.dfncis.de> (permalink)
References <c083997b-2cff-4fe4-9f0b-8232f56dd102n@googlegroups.com>
Mime-Version 1.0
Content-Type text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding 7bit
X-Trace news.dfncis.de A85ixZK20uFsxXoLbkOugAZtztCF2IEGLXSBjLZ0cPvxhjAoOOcp5GcSX2
Cancel-Lock sha1:tFr8pDQNZaDSM00FhpdNXWWCSwQ=
User-Agent Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0
In-Reply-To <c083997b-2cff-4fe4-9f0b-8232f56dd102n@googlegroups.com>
Content-Language de-DE
Xref csiph.com comp.graphics.apps.gnuplot:4362

Show key headers only | View raw


Am 27.07.2020 um 10:00 schrieb lennar...@gmail.com:
> Hello,
> 
> I would like to draw a mixed Polar an linear plot with gnuplot 

It doesn't work like that.

As can be deduced from the say "set polar" is a global setting that is 
applied before you even issue a plot command, it really affects 
everything you plot from there on.

So if you really need to mix polar with non-polar data in a single plot, 
then either one or the other has to be converted from coordinate system 
(r,thera) to (x,y), or vice versa:

	x = r*cos(theta)
	y = r*sin(theta)

or

	r = sqrt(x**2+y**2)
	theta = atan2(x,y)

> plot 'C:\Program Files\gnuplot\data.csv' notitle with lines

Please don't do that.  Your data files belong into your folders, not 
gnuplot's installation directory.

Back to comp.graphics.apps.gnuplot | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Radiaton Characteristics using Gnuplot "lennar...@gmail.com" <lennart.ripke@gmail.com> - 2020-07-27 01:00 -0700
  Re: Radiaton Characteristics using Gnuplot Karl Ratzsch <mail.kfr@gmx.net> - 2020-07-27 13:08 +0200
  Re: Radiaton Characteristics using Gnuplot Hans-Bernhard Bröker <HBBroeker@t-online.de> - 2020-07-27 20:58 +0200
    Re: Radiaton Characteristics using Gnuplot "lennar...@gmail.com" <lennart.ripke@gmail.com> - 2020-07-28 02:15 -0700

csiph-web