Issues on dimension setting of FFT plot in MATLAB 2022a.
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Dr. Pemendra Kumar Pardhi
el 1 de Ag. de 2022
Comentada: Dr. Pemendra Kumar Pardhi
el 6 de Jun. de 2023
Hello everyone,
I have got an issue with the dimension setting, level of x-axis, y-axis, font size, style and “minor and major grid on” of the FFT plot of any signals in the MATLAB 2022a version.
FFT analysis can be obtained as an attached figure file. But there is not any option for editing the plot. How can I fix these issues?
5 comentarios
Respuestas (1)
Nadia Shaik
el 9 de En. de 2023
Hi Pemendra,
I understand that you want to edit the plots in the FFT Analyzer tool.
Unfortunately, editing the plots in FFT Analyzer is not possible. As a workaround, you need to re-create the plots manually. Refer the below pointers for more information:
- The following code shows how to reference the App handle and properties. For example, The Y-Axis limits of the plot can be modified once the ‘FFT Analyzer’ app is running with the code shown below:
GUItitle = 'FFT Analyzer';
hFFT = findall(0, 'type', 'figure', 'Name', GUItitle);
hAll = hFFT.RunningAppInstance
hAll.SignalAxes.YLim = [-600 600];
- The Y-Axis limits for the ‘FFT’ plot can also be modified by replacing ‘SignalAxes’ with ‘FFTAxes’. Both axes are ‘UIAxes’ objects. More information on ‘UIAxes’ object properties can be found at the link below: https://www.mathworks.com/help/matlab/ref/matlab.ui.control.uiaxes-properties.html
I hope the above information helps.
3 comentarios
Nadia Shaik
el 11 de En. de 2023
Hi Pemendra,
The 'FFT Analyzer' was introduced in MATLAB R2021a version. Can you let me know the name of the tool that you've used in versions MATLAB R2018a or R2019a?
Ver también
Categorías
Más información sobre Spectral Measurements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!