App designer I want to show text result of classification network

1 view (last 30 days)
I create model of neural network and now I want to use it in app designer , Now i can use it but score of image can't show in text result
my code is
title(string(label) + ", " + num2str(100*scores(app.classNames == label),3) + "%");
  5 Comments
Tommy
Tommy on 10 Apr 2020
What happens if you instead use:
title(app.UIAxes, string(label) + ", " + num2str(100*scores(app.classNames == label),3) + "%");

Sign in to comment.

Answers (0)

Community Treasure Hunt

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

Start Hunting!