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!