Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下代码
clc clear fcm=65 for t = 0.1:0.01:28 s = 0.2; Bcc = exp(s*(1-(28/t)^0.5)); fcmt = fcm *Bcc end
我想将给定矩阵的值存储在一个数组中,我该怎么做?
clc,clear all,close all fcm = 65; s = .2; t = .1:.01:28; Bcc = exp(s.*(1-(28./t).^0.5)); fcmt = fcm*Bcc;
I hope this helps.