正弦波串串联

时间:2012-10-15 16:34:27

标签: string string-concatenation scilab

您好我正在尝试创建一个包含带变量的正弦波方程的标题。

% Set up initial parameters    
pi = 3.14;      % Make a variable called pi, and set it equal to 3.14    
A = 1985;       % Set the amplitude (A) equal to 5    
f = 7/3;        % Set the frequency (f) equal to 10    
p = pi/9;       % Set the phase (p) equal to 0    

% Create a time axis    
dt = 0.1;                    % Set the time step to be relatively small     
t = [0 : dt : 2.*pi];        % Create a list of time points from 0 thrugh 2*pi in steps of dt       

% Calculate the sine wave    
y = A.*sin(f.*t+p);   

y

% Graphical Display    
plot(t,y,'ko-')    
xlabel('Time, sec', 'fontsize', 6)    
ylabel ('Amplitude', 'fontsize', 6)

strA = msprintf('%1.1f', A);    
strf = msprintf('%1.1f', f);    
strp = msprintf('%1.1f', p);    
titlestr = 'y = ' + strA +' .* sin( ' + strf + ' .* t + ' + strp + ')'    
title(titlestr, 'fontsize', 6)

这是我到目前为止所做的。 在绘制这个等式时,我没有得到标题。 请帮忙。

谢谢。

1 个答案:

答案 0 :(得分:0)

您使用的是哪个版本的Scilab?它适用于5.4.0。

顺便说一句,你应该使用%pi而不是声明pi,Scilab使用//来评论,而不是%