Hello,
It is my understanding that you want to modify the font size of the axes labels, titles, and other text elements directly from the Signal Analyzer App.
Unfortunately, there is no method to directly change the font size of the axes using the Signal Analyzer App; you will have to use a different approach.
Here is a workaround that you can follow:
- In the Signal Analyzer App, select the signal you want to export.
- In the app’s toolstrip, click on the “Export” button.
- Choose to export the selected signal to the MATLAB workspace.
- Once the signal is in the workspace, use MATLAB’s plotting functions to manipulate the font size of the axes.
You can follow the below workaround to customize the font sizes:
t = yourExportedTimeVector;
xlabel('Time (s)', 'FontSize', 14);
ylabel('Amplitude', 'FontSize', 14);
title('Signal Plot', 'FontSize', 16);
Additionally, you can modify the axes font size directly with the following MATLAB commands:
Ensure that you replace the variables “yourExportedTimeVector” and “yourExportedSignal” with the actual variable names of the exported time vector and the signal data from the Signal Analyzer App.
You can refer to the following documentations to learn more about “xlabel”, “ylabel”, “title” and “gca”:
- https://www.mathworks.com/help/releases/R2023b/matlab/ref/xlabel.html
- https://www.mathworks.com/help/releases/R2023b/matlab/ref/ylabel.html
- https://www.mathworks.com/help/releases/R2023b/matlab/ref/title.html
- https://www.mathworks.com/help/releases/R2023b/matlab/ref/gca.html
I hope you find this helpful!