MATLAB: Subplot, 1 large and 2 small

subplot

Hello,
Is it possible to make a subplot that look like this:
What is code?

Best Answer

subplot(2, 2, [1 3])
%draw for A
subplot(2, 2, 2)
%draw for B
subplot(2, 2, 4)
%draw for C