Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような固定サイズの図があります。
hFig = figure(1); set(hFig, 'Position', [200 200 500 500])
しかし、問題は、(必要な)図全体ではなく、固定サイズのAXIS(正方形にしたい)を持ちたいということです...-添付の画像を参照してください、Y軸はX軸より少し長いです(もちろん、表示の意味でより長く... XとY軸の範囲は同じ値に設定されています)。調整方法は?
ありがとう!
axis equal軸の間隔を同じに設定するために使用します。
axis equal
I have Example Class:
class Example { private: int testValue1; int testValue2; int testValue3; public: Example(int pVal1, int pVal2, int pVal3); Example(const Example); c