mtex-toolbox / mtex

MTEX is a free Matlab toolbox for quantitative texture analysis. Homepage:
http://mtex-toolbox.github.io/
GNU General Public License v2.0
281 stars 185 forks source link

Possibility of merging .osc datas #74

Closed llcc closed 9 years ago

llcc commented 9 years ago

Hi @ralfHielscher @ppinard

I have seveal .osc files for some parts of one samples, the observed areas for these .osc files are neighbouring and overlapping. I would like to merge these files using mtex, or import these files to mtex and merging the generated data together. Is this possible?

Thanks for any help!

ralfHielscher commented 9 years ago

Yes this is possible. Simply import the ebsd data into different variables and then merge them. The syntax is

ebsd1 = loadEBSD('fname1')
ebsd2 = loadEBSD('fname2')

ebsd = [ebsd1,ebsd2]