From: joseph Frank on 6 Jul 2010 05:16 Is there a way to write stars with matlab. For example: I want to put in a cell '0.0093***'
From: dpb on 6 Jul 2010 08:32
joseph Frank wrote: > Is there a way to write stars with matlab. For example: I want to put in > a cell '0.0093***' >> sprintf('%6.4f***', .0093) ans = 0.0093*** >> -- |