0

我有以下代码

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

我想将给定矩阵的值存储在一个数组中,我该怎么做?

4

1 回答 1

0
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.

于 2013-04-06T12:07:52.937 回答