Search This Blog.......

Showing posts with label Control Engineering. Show all posts
Showing posts with label Control Engineering. Show all posts

Sunday, August 25, 2013

Control engineering MATLAB RAMP function

Matlab code for ramp function
clc;
clear all;
t=-50:1:50;
x=t;
plot(t,x);
axis([-50 50 -50 50]);
grid on;