Home > OS >  Plot with bar side by side and with two y axes
Plot with bar side by side and with two y axes

Time:08-19

I have this script to obtain subplot with bar, but I would rather that the bars were side by side and with two y axes. How can I do? I have in this case the bars one above the other. The result is shown in figure below.

% Create figure
figure1 = figure('NumberTitle','off','Name','Figure','Color',[1 1 1]);
           
  • Related