photo

zhang


自 2013 起处于活动状态

Followers: 0   Following: 0

消息

my code is like this:

clear all
t0=0;
dt=0.05;
t1=1;
tf=5;
t=[t0:dt:tf];
st=length(t);

n1=floor((t1-t0)/dt)
x1=zeros(1,st);
x(n1)=1/dt;
subplot(2,2,1),stairs(t,x1),grid on

x2=[zeros(1,n1-1),ones(1,st-n1+1);
subplot(2,2,3);
stairs(t,x2);
grid on
w=10;;
u=-0.5;
x3=exp((u+j*w)*t);
subplot(2,2,2),plot(t,real(x3)),grid on;
subplot(2,2,4),plot(t,imag(x3)),grid on;

but when I run it ,an error returned. The error is:Error: File: lab3.m Line: 19 Column: 2
The expression to the left of the equals sign is not a valid target for an assignment.
Can anyone help me help me
Professional Interests: singal processing

统计学

MATLAB Answers

1 个提问
1 个回答

排名
217,819
of 300,765

声誉
0

贡献数
1 个提问
1 个回答

回答接受率
0.0%

收到投票数
0

排名
 of 21,084

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 170,941

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Answer

查看徽章

Feeds

排序方式:

提问


The expression to the left of the equals sign is not a valid target for an assignment.
have someone crashed to this problem? when I run the code blew,an error return. hope someone can help me! clear all t0=...

12 years 前 | 1 个回答 | 0

1

个回答

已回答
error "The expression to the left of the equals sign is not a valid target for an assignment."
but how to solve the problem blew: clear all t0=0; dt=0.05; t1=1; tf=5; t=[t0:dt:tf]; st=length(t); n1=floor((t1-t0...

12 years 前 | 0