• Data are provided as-is, with no guarantees of accuracy.
  • Please reference MasseyRatings.com if you use any of this data in your calculations or research.
  • Intra - list games if both teams are members of the selected conference
  • Inter - list games that involve a team outside the selected conference
  • Matlab Games - CSV file with the following fields:
    • days since 1-1-0000
    • YYYYMMDD
    • team1 index (zero if a non-conference team)
    • score1
    • homefield1 (1=home, -1=away, 0=neutral)
    • team2 index (zero if a non-conference team)
    • score2
    • homefield2 (1=home, -1=away, 0=neutral)
    You can load this file in Matlab with:
    games=csvread('output.gms');
  • Matlab Teams - CSV file with the team index, name. You can load this file like this:
    [tmindex,tmnames]=textread('output.tms','%d,%s');