MATLAB: How i display matrix

arraymatrixmatrix arraymatrix manipulation

my matrix is the form:
Ki = [25 35, 56 41,85 78]
i want print the like 35 or 41 or 78

Best Answer

Firsgt, you need to change the commas to semicolons, then display the second column:
Ki = [25 35; 56 41; 85 78]
Display = Ki(:,2)