can any one of you kindly let me know ,how to implement the below equations in matlab ?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens

0 commentaires
Réponse acceptée
Walter Roberson
le 3 Fév 2014
On the left side you have the function g subscript m,n and on the right hand side you have the function g with no subscript. Is g with no subscript a different function than g subscript m,n ?
3 commentaires
Walter Roberson
le 3 Fév 2014
xyprime = @(m, theta, x, y) a^(-m) * [cos(theta) sin(theta); -sin(theta) cos(theta) * [x;y];
g2 = @(xy) g(xy(1), xy(2));
gmn = @(m, n, x, y) a^(-2*m) * g2(xyprime(m, 2 * pi * n / L, x, y));
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Import and Network Parameters dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!