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

Popular posts from this blog

ios - iPhone/iPad different view orientations in different views , and apple approval process -

java Extracting Zip file -

C# WinForm - loading screen -