Re: Plot points! [message #78779] |
Tue, 20 December 2011 10:49 |
d.poreh
Messages: 406 Registered: October 2007
|
Senior Member |
|
|
On Dec 20, 10:42 am, David Fanning <n...@dfanning.com> wrote:
> DavePoreh writes:
>> Thanks Alx. from where i could find the lists of symbols pls.
>
> Sigh....
>
> Cheers,
>
> David
>
> --
> David Fanning, Ph.D.
> Fanning Software Consulting, Inc.
> Coyote's Guide to IDL Programming:http://www.idlcoyote.com/
> Sepore ma de ni thui. ("Perhaps thou speakest truth.")
Thanks Alx.
Cheers,
Dave
|
|
|
Re: Plot points! [message #78780 is a reply to message #78779] |
Tue, 20 December 2011 10:42  |
David Fanning
Messages: 11724 Registered: August 2001
|
Senior Member |
|
|
DavePoreh writes:
> Thanks Alx. from where i could find the lists of symbols pls.
Sigh....
Cheers,
David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.idlcoyote.com/
Sepore ma de ni thui. ("Perhaps thou speakest truth.")
|
|
|
Re: Plot points! [message #78781 is a reply to message #78780] |
Tue, 20 December 2011 10:25  |
lecacheux.alain
Messages: 325 Registered: January 2008
|
Senior Member |
|
|
On 20 déc, 19:19, DavePoreh <d.po...@gmail.com> wrote:
> On Dec 20, 9:19 am, David Fanning <n...@dfanning.com> wrote:
>
>
>
>
>
>> DavePoreh writes:
>>> yes i wish to plot in IDL8.0 format with beautiful points if it is
>>> possible.
>
>> I think to make progress as an IDL programmer, you
>> are going to have to get over the fear of making
>> typing mistakes:
>
>> http://www.personal-development.com/chuck/making-mistakes.ht m
>
>> Cheers,
>
>> David
>
>> --
>> David Fanning, Ph.D.
>> Fanning Software Consulting, Inc.
>> Coyote's Guide to IDL Programming:http://www.idlcoyote.com/
>> Sepore ma de ni thui. ("Perhaps thou speakest truth.")
>
> Thanks Alx. from where i could find the lists of symbols pls.
> Cheers,
> Dave- Masquer le texte des messages précédents -
>
> - Afficher le texte des messages précédents -
search for "Formatting IDL Graphics Symbols and Lines" in IDL doc !
|
|
|
Re: Plot points! [message #78782 is a reply to message #78781] |
Tue, 20 December 2011 10:19  |
d.poreh
Messages: 406 Registered: October 2007
|
Senior Member |
|
|
On Dec 20, 9:19 am, David Fanning <n...@dfanning.com> wrote:
> DavePoreh writes:
>> yes i wish to plot in IDL8.0 format with beautiful points if it is
>> possible.
>
> I think to make progress as an IDL programmer, you
> are going to have to get over the fear of making
> typing mistakes:
>
> http://www.personal-development.com/chuck/making-mistakes.ht m
>
> Cheers,
>
> David
>
> --
> David Fanning, Ph.D.
> Fanning Software Consulting, Inc.
> Coyote's Guide to IDL Programming:http://www.idlcoyote.com/
> Sepore ma de ni thui. ("Perhaps thou speakest truth.")
Thanks Alx. from where i could find the lists of symbols pls.
Cheers,
Dave
|
|
|
|
Re: Plot points! [message #78785 is a reply to message #78784] |
Tue, 20 December 2011 09:09  |
lecacheux.alain
Messages: 325 Registered: January 2008
|
Senior Member |
|
|
On 20 déc, 17:35, DavePoreh <d.po...@gmail.com> wrote:
> On Dec 20, 8:12 am, alx <lecacheux.al...@wanadoo.fr> wrote:
>
>
>
>
>
>> On 20 déc, 15:24, DavePoreh <d.po...@gmail.com> wrote:
>
>>> Guys
>>> hi,
>>> Back to my previous message, i would like to plot just points not
>>> lines in the following code from Mark.
>
>>> x = [0, 35, 70, 140]
>>> y = [0, 196.7, 779.8, 37]
>>> s = string([12006, 12507, 13008, 14010])
>>> ; NG (IDL 8.1)
>>> p = plot(x, y)
>>> t = text(x, y, s, alignment='center', /data)
>
>>> Cheers,
>>> Dave
>
>> p = plot(x, y, LINESTYLE=6)
>> t = text(x, y, s, alignment='center', /data)
>
>> alx.
>
> Thanks
> But i can not see any points.
> Dave,- Masquer le texte des messages précédents -
>
> - Afficher le texte des messages précédents -
ok.
p = plot(x, y, LINESTYLE=6, SYMBOL='+') is equivalent to the old
style: plot, x, y, PSYM=1
t = text(x, y, s, alignment='center', /data) is equivalent to the old
style: xyouts, x, y, s, ALIGN=0.5
then you have to play with the postion of the text annotation or to
suppress it, according to what you actually want to display.
alx.
|
|
|
Re: Plot points! [message #78787 is a reply to message #78785] |
Tue, 20 December 2011 09:06  |
d.poreh
Messages: 406 Registered: October 2007
|
Senior Member |
|
|
On Dec 20, 8:49 am, Russell <rryan....@gmail.com> wrote:
> Do you just need to set the psym keyword?
>
> plot,x,y,psym=2 ;for asterisks
>
> Russell
>
> On Dec 20, 11:35 am, DavePoreh <d.po...@gmail.com> wrote:
>
>
>
>
>
>
>
>> On Dec 20, 8:12 am, alx <lecacheux.al...@wanadoo.fr> wrote:
>
>>> On 20 déc, 15:24, DavePoreh <d.po...@gmail.com> wrote:
>
>>>> Guys
>>>> hi,
>>>> Back to my previous message, i would like to plot just points not
>>>> lines in the following code from Mark.
>
>>>> x = [0, 35, 70, 140]
>>>> y = [0, 196.7, 779.8, 37]
>>>> s = string([12006, 12507, 13008, 14010])
>>>> ; NG (IDL 8.1)
>>>> p = plot(x, y)
>>>> t = text(x, y, s, alignment='center', /data)
>
>>>> Cheers,
>>>> Dave
>
>>> p = plot(x, y, LINESTYLE=6)
>>> t = text(x, y, s, alignment='center', /data)
>
>>> alx.
>
>> Thanks
>> But i can not see any points.
>> Dave,
yes i wish to plot in IDL8.0 format with beautiful points if it is
possible.
Cheers,
Dave
|
|
|
Re: Plot points! [message #78789 is a reply to message #78787] |
Tue, 20 December 2011 08:49  |
Russell[1]
Messages: 101 Registered: August 2011
|
Senior Member |
|
|
Do you just need to set the psym keyword?
plot,x,y,psym=2 ;for asterisks
Russell
On Dec 20, 11:35 am, DavePoreh <d.po...@gmail.com> wrote:
> On Dec 20, 8:12 am, alx <lecacheux.al...@wanadoo.fr> wrote:
>
>
>
>
>
>
>
>
>
>> On 20 déc, 15:24, DavePoreh <d.po...@gmail.com> wrote:
>
>>> Guys
>>> hi,
>>> Back to my previous message, i would like to plot just points not
>>> lines in the following code from Mark.
>
>>> x = [0, 35, 70, 140]
>>> y = [0, 196.7, 779.8, 37]
>>> s = string([12006, 12507, 13008, 14010])
>>> ; NG (IDL 8.1)
>>> p = plot(x, y)
>>> t = text(x, y, s, alignment='center', /data)
>
>>> Cheers,
>>> Dave
>
>> p = plot(x, y, LINESTYLE=6)
>> t = text(x, y, s, alignment='center', /data)
>
>> alx.
>
> Thanks
> But i can not see any points.
> Dave,
|
|
|
Re: Plot points! [message #78790 is a reply to message #78789] |
Tue, 20 December 2011 08:35  |
d.poreh
Messages: 406 Registered: October 2007
|
Senior Member |
|
|
On Dec 20, 8:12 am, alx <lecacheux.al...@wanadoo.fr> wrote:
> On 20 déc, 15:24, DavePoreh <d.po...@gmail.com> wrote:
>
>> Guys
>> hi,
>> Back to my previous message, i would like to plot just points not
>> lines in the following code from Mark.
>
>> x = [0, 35, 70, 140]
>> y = [0, 196.7, 779.8, 37]
>> s = string([12006, 12507, 13008, 14010])
>> ; NG (IDL 8.1)
>> p = plot(x, y)
>> t = text(x, y, s, alignment='center', /data)
>
>> Cheers,
>> Dave
>
> p = plot(x, y, LINESTYLE=6)
> t = text(x, y, s, alignment='center', /data)
>
> alx.
Thanks
But i can not see any points.
Dave,
|
|
|
Re: Plot points! [message #78791 is a reply to message #78790] |
Tue, 20 December 2011 08:12  |
lecacheux.alain
Messages: 325 Registered: January 2008
|
Senior Member |
|
|
On 20 déc, 15:24, DavePoreh <d.po...@gmail.com> wrote:
> Guys
> hi,
> Back to my previous message, i would like to plot just points not
> lines in the following code from Mark.
>
> x = [0, 35, 70, 140]
> y = [0, 196.7, 779.8, 37]
> s = string([12006, 12507, 13008, 14010])
> ; NG (IDL 8.1)
> p = plot(x, y)
> t = text(x, y, s, alignment='center', /data)
>
> Cheers,
> Dave
p = plot(x, y, LINESTYLE=6)
t = text(x, y, s, alignment='center', /data)
alx.
|
|
|