sir,how to implement multiplications of exponential equations in matlab.
1 回表示 (過去 30 日間)
古いコメントを表示
how can i multiply a sinusoidal grating with a two dimensional guassian function h(x,y).
0 件のコメント
採用された回答
Walter Roberson
2014 年 2 月 1 日
[X, Y] = ndgrid( -5:.1:5, 3:.01:4); replace the constants with the limits for x and y
gauss_mat = h(X, Y);
grating = ... whatever over X and Y
result = grating .* gauss_mat;
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!