Can we export texture fibre data into ASCII or similar file?

59 views
Skip to first unread message

Ercan Çakmak

unread,
Dec 25, 2014, 10:30:23 PM12/25/14
to mtex...@googlegroups.com
Hi,

I have managed to obtain the texture fibre of the rolling textures by using the command lines (that I have come across here) for the alpha fibre as an example:

phi1 = linspace(0*degree,90*degree);
Phi  = 45*degree;
phi2 = 0*degree;
ori = orientation('Euler',phi1,Phi,phi2,CS);
plot(phi1./degree,eval(odf,ori))

I was wondering if MTEX can export this data into ASCII format or something similar so that I can overlay these plots as a function of rolling reduction from different texture data collected at each level.

Thank you in advance

Ralf Hielscher

unread,
Feb 19, 2015, 5:53:35 PM2/19/15
to mtex...@googlegroups.com
Hi Ercan Çakmak,

I think you should use pure MATLAB functionality to export those values to an ASCII file. On the other hand I believe that that overlaying those plots can be done in MATLAB much easier than in any other program

%// start overlay
hold all
plot
(phi1./degree,eval(odf1,ori))
plot
(phi1./degree,eval(odf2,ori))
plot
(phi1./degree,eval(odf3,ori))

%// stop overlay
hold off

I hope this helps,

Ralf.
Reply all
Reply to author
Forward
0 new messages