% ex01x01.m % simple program using transpose and array power function A = ex01x01 k = [1,2,3,4]; k = k'; A = [k.^1, k.^2, k.^3, k.^4];