Default bode axis to Hz in R2024b
61 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Harm Weerts
el 24 de Oct. de 2024 a las 10:21
Comentada: Star Strider
el 25 de Oct. de 2024 a las 10:01
Since matlab R2024b the bode command creates my plots in rad/s instead of Hz. In the past I used to set the default axis to Hz by setting cstprefs. Now this doesn't work anymore and I have to manually change every bode plot to Hz. Any suggestions on how to set the default in this version?
This code in R2022b gives a plot in Hz, and in R2024b gives it in rad/s
set(cstprefs.tbxprefs,'FrequencyUnits','Hz','grid','on');
bode(ss(1))
Edit: The set command normally runs as part of the startup script, and hence sets a default option. Here I placed it like this to reproduce the issue.
0 comentarios
Respuestas (1)
Star Strider
el 24 de Oct. de 2024 a las 10:58
I did not see any changes to that in the Release Notes, however that does not mean that they were not changed. The only relevant reference I can find is Specify Plotting Preferences for Linear Analysis and Specify Toolbox Preferences for Linear Analysis Plots and nothing that uses the syntax that you posted. They in turn refer to the ctrlpref function.
6 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!