sir,how to implement multiplications of exponential equations in matlab.

1 回表示 (過去 30 日間)
ashok
ashok 2014 年 2 月 1 日
コメント済み: ashok 2014 年 2 月 1 日
how can i multiply a sinusoidal grating with a two dimensional guassian function h(x,y).

採用された回答

Walter Roberson
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 件)

カテゴリ

Help Center および File ExchangeNumeric Solvers についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by