I want to implement these equations in MATLAB but how?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Sadiq Akbar
el 14 de Oct. de 2021
Comentada: Sadiq Akbar
el 14 de Oct. de 2021
The equations are given in the attachment. Assume lambda=1. How to implement the given equations in MATLAB?
2 comentarios
Respuesta aceptada
Matt J
el 14 de Oct. de 2021
Editada: Matt J
el 14 de Oct. de 2021
fn=@(theta,k) exp((0:k-1).' * (2i*pi*d/lambda*sin(theta)));
A=fn(theta,M);
B=fn(theta,N);
y=reshape( A*B.', [],1);
7 comentarios
Matt J
el 14 de Oct. de 2021
No, the Kronecker product of two vectors is a vector, e.g.,
a=[1;2;3];
b=[4;5];
kron(a,b)
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!