I'm bothering you with a question about subplot sizes in matplotlib. I need to create a figure of a fixed size composed of 3 subplots in a single row. For 'editorial reasons' I need fix the size of the figure But I also want to fix the sizes and positions of the subplots without affecting the figure size (the third subplot must be narrower than the first two).
I tried using GridSpec without success. I also tried fixing the figure size with "figsize" and using add_axes for the subplots but, depending of the relative size of the subplots, the overall size of the figure and the subplots changes.
When using gnuplot one can use "set origin" and "set size" for the subplots. Us there something similar in matplotlib?