Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: djm87/Twin-Analysis
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.0
Choose a base ref
...
head repository: djm87/Twin-Analysis
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 4 commits
  • 2 files changed
  • 2 contributors

Commits on Jul 8, 2022

  1. Fix EffSF storage bug

    Parent grains should have a positive EffSF, but some did and some didn't when plotting the EffSF. This line addition solves this problem.
    djm87 committed Jul 8, 2022
    Copy the full SHA
    76b5fe8 View commit details
  2. Copy the full SHA
    b53d183 View commit details

Commits on Jun 1, 2023

  1. Update README.md

    djm87 authored Jun 1, 2023
    Copy the full SHA
    1913969 View commit details
  2. Update README.md

    djm87 authored Jun 1, 2023
    Copy the full SHA
    7dc381d View commit details
Showing with 2 additions and 1 deletion.
  1. +1 −1 README.md
  2. +1 −0 src/Segmentation/FamilyGraph.m
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Twin-Analysis
A twin analysis code built on MTEX and Matlab's graph toolbox

[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/djm87/Twin-Analysis/blob/master/LICENSE)[![Github All Releases](https://img.shields.io/github/downloads/djm87/Twin-Analysis/total.svg)]()
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/djm87/Twin-Analysis/blob/master/LICENSE)


## Summary
1 change: 1 addition & 0 deletions src/Segmentation/FamilyGraph.m
Original file line number Diff line number Diff line change
@@ -112,6 +112,7 @@
G_Family.Edges.FRgB(toFlip,:)=fliplr(G_Family.Edges.FRgB(toFlip,:));
G_Family.Edges.FREffSF(toFlip,:)=fliplr(G_Family.Edges.FREffSF(toFlip,:));
G_Family.Edges.Vote(toFlip,:)=fliplr(G_Family.Edges.Vote(toFlip,:));
G_Family.Edges.EffSF(toFlip,:)=fliplr(G_Family.Edges.EffSF(toFlip,:));
G_Family.Edges.Parent(toFlip,:)=fliplr(G_Family.Edges.Parent(toFlip,:));
G_Family=flipedge(G_Family,find(toFlip));
catch