how to creat Multiplication table
显示 更早的评论
I'm trying to creat a multiplication table for the following
f=[5:.332:55];
omegahz=(2*pi)*f;
amp=0:0.01:1.5;
My attempt was
f=[5:.332:55];
omegahz=(2*pi)*f;
amp=0:0.01:1.5;
for n=1:151
omegan =omegahz(1,n)
ampn= amp(1,n)
g(ampn,omegan)=ampn*omegan
end
so I think I have to call on the location not the value so I tried this
f=[5:.332:55];
omegahz=(2*pi)*f;
amp=0:0.01:1.5;
for n=1:151
omegan =omegahz
ampn= amp
g(ampn,omegan)=ampn.*omegan
end
and get this
??? Subscript indices must either be real positive integers or logicals.
Error in ==> Untitled3 at 10
g(ampn,omegan)=ampn.*omegan
I'm Not sure how to proceed on this one, Your help Is appreciated. Thanks
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Logical 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!