maclariz
maclariz
Perhaps a silly question, but if you run cluster analysis, get some nice results and split your dataset into a small number of orientations (something that happens for most of...
I was wondering if get_distance_matrix could go faster by using a GPU, which seems to be a possibility with dask functions. What do you think?
Running map_into_symmetry_reduced_zone() on sensible data (single crystal, all similar orientations) yields the following (just a few lines shown for illustration): ```python [-0.9681 0.0373 -0.0222 0.2467] [-0.9685 0.0373 -0.0222 0.2452] [-0.9685...
It would be nice to be able to plot the axis/angle pairs nicely as maps. I have the angles out and plotted, although blacking out the bits where there is...
I have plotted a map of the cluster colours: ```python axi.plot_map(Timap["Alpha Titanium"], labels_rgb) ``` which is fine. (I also hacked the colors to make them represent clusters of related orientations)...
Can a plot_scatter method be made so that a scatter plot can be included in a matplotlib composite plot, similar to how the plot_ipf_color_key() was made recently in #352 ?
I have some nice hexagonal clustering data now. And the misorientations at least partially make sense. What I need now is to convert the vector3d results for the rotation axis...
Is it possible to implement parent grain reconstruction? As based on: Humbert et al., Scripta Metallurgica et Materialia, Volume 30, Issue 3, 1994, Pages 377-382 implemented by Brad Wynne for...
Does anyone have any insight on the physical meaning of the eps parameter in the DBSCAN algorithm and how this relates to angular spread in a cluster?
I cannot seem to add text within a stereographic plot. Here is the code: ```python axh = plt.subplot(gs[2,2:4], projection='stereographic') axh.scatter(v_alpha2_pruned, ec='k', linewidths=0.5, c=labels_rgb_pruned, alpha=0.7, s=120, marker='o') axh.text(Vector3d.from_polar(1,1),letter[7], size=20) ``` The...