How to off the axis in eye diagram and save as image?
2 次查看(过去 30 天)
显示 更早的评论
I have plot the eyediagram of B-FM modulation and i want to remove the axis from it and then save it as png.
I have tried
a = load("E:\SNR-Dataset\frame_snr0\frame_snr0B-FM5330.mat");
eyediagram( a.frame , sps)
set(gca, 'Visible', 'off')
But it remove the axis from only Q phase signal. I have aslo attached the output.
Please how can i proceed.
0 个评论
采纳的回答
更多回答(1 个)
yanqi liu
2021-10-6
sir, may be use the follows
clc; clear all; close all;
a = load("frame_snr-20B-FM5330.mat");
eyediagram( a.frame , 10)
hs = get(gcf, 'Children');
set(hs, 'Visible', 'off')
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!