Prev: how can i get minimum positive value in an expression number of solutions, give me the code for this
Next: dendrogram label
From: Michael on 30 Jan 2010 16:22 Is there a way to initialize several arrays to zero? For instance: uas=zeros(1,3); vas=zeros(1,3); vbs=zeros(1,3); or ua=cell(1,4); va=cell(1,4); vb=cell(1,4); in this example, there are only two sets of three arrays but say if I had several more.
From: Matt J on 30 Jan 2010 21:27
[uas,vas,vbs]=deal(zeros(1,3)); [ua,va,vb]=deal(cell(1,4)); |