Ich möchte unter dem Text des Polarhistogramms einen Text hinzufügen.
Ursprünglich habe ich ein normales Histogramm und kannxlabeleinen Text wie folgt einfügen:
histogram_orientation_of_blobs = histogram(orientation, 'Normalization','probability');
xlabel(['orientation ($^{\circ}$)'],'Interpreter','latex','fontsize', 12)
Wenn ich jedoch
histogram_orientation_of_blobs = polarhistogram(orientation, 'Normalization','probability');
xlabel(['orientation ($^{\circ}$)'],'Interpreter','latex','fontsize', 12)
Ich kann es nicht verstehen. Ich vermute, es liegt daran, dass auf einem Polarhistogramm kein Xlabel vorhanden ist, aber wie füge ich unterhalb des Polarhistogramms eine Beschreibung für dieses Diagramm hinzu?