matlab - in a loop, store the values of given matrix in an array -
i have following code
clc clear fcm=65 t = 0.1:0.01:28 s = 0.2; bcc = exp(s*(1-(28/t)^0.5)); fcmt = fcm *bcc end and want store values of given matrix in array, how can this?
clc,clear all,close fcm = 65; s = .2; t = .1:.01:28; bcc = exp(s.*(1-(28./t).^0.5)); fcmt = fcm*bcc; i hope helps.
Comments
Post a Comment