How to assign pair of values to a single aeeay in the matrix using two different vectors
3 ビュー (過去 30 日間)
古いコメントを表示
fsine=50e6:0.4e9:3e9;
Vp=0:0.5:3;
I need to form a matrix such that columns correspons to different Vp for a single fsine.
the first column should be for fsine=50e6 for all values for Vp and second column should be fsine=50e6+0.1e9 for all values in Vp
The final vector should be have 7 rows and 8 columns.
0 件のコメント
回答 (2 件)
sai charan sampara
2024 年 6 月 30 日
Hi Yogesh
The following code might help you:
fsine=50e6:0.4e9:3e9
Vp=0:0.5:3
M=zeros(7,8);
for idx1=1:7
for idx2=1:8
M(idx1,idx2)=sin(fsine(idx2)*Vp(idx1));
end
end
M
1 件のコメント
Chuguang Pan
2024 年 6 月 30 日
fsine = 50e6:.4e9:3e9;
Vp = 0:.5:3;
M=sin(Vp.'*fsine)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!