From 0728bdaa267d8df3261d6ff132cc62d7c231cd1a Mon Sep 17 00:00:00 2001 From: David Bailey Date: Fri, 13 Jan 2017 05:53:42 +0100 Subject: [PATCH] Update pythonMatlabR.csv --- pythonMatlabR.csv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonMatlabR.csv b/pythonMatlabR.csv index b834481..6494fbb 100644 --- a/pythonMatlabR.csv +++ b/pythonMatlabR.csv @@ -7,8 +7,8 @@ Pi,math.pi,pi,pi Exponent,math.exp(1),exp(1),exp(1) Array,"numpy.array([1, 2, 3])",[1 2 3],"c(1,2,3,4,5)" Matrix,"numpy.matrix('1 2; 3 4')",[1 2; 3 4], -Select a row,"matrix[0,]","matrix(1,:)" -Select a column,"matrix[:,0]","matrix(:,1)" +Select a row,"matrix[0,]","matrix(1,:)", +Select a column,"matrix[:,0]","matrix(:,1)", Transpose,numpy.transpose(matrix),matrix', ,numpy.arrange(10),1:10, ,"numpy.arrange(1,10,.5)",1:.5:10,