유용한 지식44 Matlab Graph Axis Tick | Plot Advanced Edit1 Matlab Graph Axis Tick | Plot Advanced Edit1 When you draw a graph, the x-axis value or y-axis value is sometimes expressed in a way that you don't like. For example, suppose you have the following graph. The x-axis data is marked 'x10^4.' It is not easy to understand them at a glance. Similarly, the y-axis is also marked 'x10^-3' and is not satisfactory. Therefore, we want to attach k to the x-.. 2020. 9. 24. Matlab subplot function Matlab subplot function One of the functions that seems easy but is quite confusing to use after a long time. I'm uploading an example code, so please scratch it freely and correct it. %% Setting dt = 0.0001; % time step t = 0:dt:0.08; % time V1 = 220*sin(2*pi*60*t); % Data V2 = 110*cos(2*pi*60*t); % Data %% Plotting figure subplot(2,1,1) %% First graph window of 2X1 plot(t,V1) title('Simulation.. 2020. 9. 24. Matlab Plot Function, Basic and Useful Tips Matlab Plot Function, Basic and Useful Tips the flower of Matlab is drawing a graph. I will share the codes I use often, so please freely scrape them and correct them. 1. Basic Code %% Setting dt = 0.0001; % time step t = 0:dt:0.08; % time V = 220*sin(2*pi*60*t); % Data %% Plot plot(t,V) I drew 220V, 60Hz voltages for explanation. The dt in the second line is the time step of the graph, which is.. 2020. 9. 24. PWM 기본 제어 원리1 PWM(Pulse Width Modulation) 기본 제어 원리1 전기자동차에서 모터 구동을 위해 주로 쓰이는 인버터(Inverter)는 PWM(Pulse Width Modulation) 제어에 의해 동작한다. 처음 이 PWM 제어에 대해 공부하면 잘 감이 오지 않을 수 있는데, 한 번 이해하면 그렇게 어렵지 않은 개념이니 겁먹지 말고 따라오자. 스위치와 PWM 우리말로 펄스 폭 변조라고 불리는 PWM은 간단히 말해 스위치를 on/off 하기 위한 신호의 패턴이다. 차량의 모터는 공급 받는 전류의 주파수와 크기로 회전 속도와 토크를 조절할 수 있기 때문에 차를 운전하려면 원하는 주파수와 크기의 교류 전원을 만들 필요가 있다. 이를 위해 필요한 장치가 바로 인버터이다. 기본적으로 인버터는 스위치를 껐다 .. 2020. 9. 8. 이전 1 ··· 4 5 6 7 8 9 10 11 다음 반응형