How to make a video with array pattern function

I am trying to make a video on how the directivity of an antenna array as I steer the beam. I have so far the following code:
videoFile = VideoWriter('Directivity_Change in angle');
open(videoFile);
for aziang = -90:90
steervec = phased.SteeringVector('SensorArray',URA);
weights = steervec(fc,[aziang;0]);
pattern(URA,fc,[-180:180],[-90:90],...
'CoordinateSystem','polar',...
'Type','directivity','PropagationSpeed',c,'Weights',weights)
F = getframe(gcf);
writeVideo(videoFile,weights)
end
I am ending up getting that no video frames were written to thie file. I am not sure how to do this so was wondering if I could get some help. Thanks in Advance!

Risposte (1)

Image Analyst
Image Analyst il 10 Gen 2023
Modificato: Image Analyst il 10 Gen 2023
Do you see anything in the display?
Write out F, not weights.
writeVideo(videoFile, F)
See attached demo.

2 Commenti

Thank you very much for the reply, it was in fact the 'F' - feel silly for asking here - thanks so much
If this Answer solves your original question, then could you please click the "Accept this answer" link to award the answerer with "reputation points" for their efforts in helping you? They'd appreciate it. Thanks in advance. 🙂 Note: you can only accept one answer (so pick the best one) but you can click the "Vote" icon for as many Answers as you want. Voting for an answer will also award reputation points.

Accedi per commentare.

Categorie

Scopri di più su Get Started with Phased Array System Toolbox in Centro assistenza e File Exchange

Prodotti

Release

R2021a

Richiesto:

il 10 Gen 2023

Commentato:

il 10 Gen 2023

Community Treasure Hunt

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

Start Hunting!

Translated by