Plots in app designer

2 次查看(过去 30 天)
Dears ,
Have question regrading ploting in app designer ,
I have the following code for ploting a figure
figure(1);
barh(predictorImportance)
grid on
set(gca,'ytickLabel',inputNames(sortedIndex))
xlabel({'Predictor Importance for ', convertCharsToStrings(outputNames) })
........................................
How can do code change so that it fit to app. uiaxes , in other words , how I can use app. uiaxes to make the same plot .

采纳的回答

Mohammad Sami
Mohammad Sami 2020-5-18
You can specify the handle of the uiaxes, so that matlab knows which axes to plot on.
barh(app.UIAxes,predictorImportance);
grid(app.UIAxes,'on');
set(app.UIAxes,'ytickLabel',inputNames(sortedIndex));
xlabel(app.UIAxes,{'Predictor Importance for ', convertCharsToStrings(outputNames) });

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by