write a single line of matlab code (i.e., without any semicolons) that calculates the mean response times for each person in matlab

main.m
meanResponseTimes = mean(responseTimes, 2)
43 chars
2 lines

Where responseTimes is a matrix where each row represents the response times of a person and each column represents a trial. The second argument of the mean function (2) computes the mean across the columns (i.e., for each person). The output is a column vector of mean response times for each person.

gistlibby LogSnag