From 168c3d99b9135ecce1781077df1c0a3514d21406 Mon Sep 17 00:00:00 2001 From: Dane Sabo Date: Wed, 19 Feb 2025 13:25:55 -0500 Subject: [PATCH] vault backup: 2025-02-19 13:25:55 --- 300s School/ME 2046 - Digital Control Theory/test.m | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/300s School/ME 2046 - Digital Control Theory/test.m b/300s School/ME 2046 - Digital Control Theory/test.m index e69de29b..55b76d32 100644 --- a/300s School/ME 2046 - Digital Control Theory/test.m +++ b/300s School/ME 2046 - Digital Control Theory/test.m @@ -0,0 +1,9 @@ +function test() + a = 5; + b = 10; + c = a + b; + disp(c) + % Intentional error: undefined variable + disp(undefinedVar) +end +