Output values of pole figures at specific locations #497
-
I am trying to export the pole figure intensity values at specific locations on the pole figure (like along the xvector, zvector or similar). But I wasn't able to find a command to do so in the function references list. I dimly recall the 'get' function in versions 3 and 4 allowed this. Is there a currently a command that I'm just missing? If not, could it be added? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Assume you have a single pole figure you can do
```
pf(xvector).intensities
```
this will give you the intensity of the measurement point closest to xvector
Ralf.
********************************************************************
Ralf Hielscher Tel: +371-531-38556
Fakultät für Mathematik +371-531-22200 (Sekr.)
Technische Universität Chemnitz Fax: +371-531-22109
Reichenhainer Str. 39 E-mail:
[email protected]
D-09126 Chemnitz http://www.tu-chemnitz.de/~rahi
********************************************************************
…On Tue, Jul 7, 2020 at 9:06 PM Adam Creuziger - NIST < ***@***.***> wrote:
I am trying to export the pole figure intensity values at specific
locations on the pole figure (like along the xvector, zvector or similar).
But I wasn't able to find a command to do so in the function references
list. I dimly recall the 'get' function in versions 3 and 4 allowed this.
Is there a currently a command that I'm just missing? If not, could it be
added?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<https://github.com/mtex-toolbox/mtex/issues/497>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACBYJ2NCDNG4RSISENSJ56LR2NW3BANCNFSM4OTJ6KSQ>
.
|
Beta Was this translation helpful? Give feedback.
-
Thanks! It also looks like you can send an array of vectors, and if you have multiple pole figures a short for loop will work. Example below works with several pole figures in a single class (pf), and two vectors (x and z axis).
|
Beta Was this translation helpful? Give feedback.
Thanks! It also looks like you can send an array of vectors, and if you have multiple pole figures a short for loop will work. Example below works with several pole figures in a single class (pf), and two vectors (x and z axis).