In this directory: iqph.m Linear program solver poker.m Game of one-card poker zsumextformlp.m Extensive form zero sum game solver To recreate the results in www.cs.cmu.edu/~ggordon/poker/, run Matlab and type: >> poker; >> [x,y,val]=zsumextformlp(A,a,B,b,RA); To then plot the first player's strategy, use: >> plot(1:ncards,x(ncards+1:2*ncards),1:ncards,x(3*ncards+1:4*ncards)./x(1:ncards))