Issues on dimension setting of FFT plot in MATLAB 2022a.
Show older comments
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 Comments
chagamreddy venkata subba reddy
on 19 Oct 2022
i also got same issue. unable to find solution.....
chagamreddy venkata subba reddy
on 19 Oct 2022
can you tell me sir... if you found any solution
Dr. Pemendra Kumar Pardhi
on 4 May 2023
Habtamu asres
on 6 Jun 2023
are u sure bro?
Dr. Pemendra Kumar Pardhi
on 6 Jun 2023
Answers (1)
Nadia Shaik
on 9 Jan 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 Comments
Dr. Pemendra Kumar Pardhi
on 9 Jan 2023
Nadia Shaik
on 11 Jan 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?
Dr. Pemendra Kumar Pardhi
on 12 Jan 2023
Categories
Find more on Fourier Analysis and Filtering in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

