Is there a way to compute the power of a sparse matrix in matlab without converting it to a full matrix. If I try
b = a^0.5
where a is a sparse matrix, I get the error "Use full(x)^full(y).". However, converting a to a full matrix defeats the purpose of having a sparse matrix to begin with. Anyone know if this is possible?