2.m working

This commit is contained in:
Filipriec
2025-10-02 15:34:01 +02:00
commit 20aa42808e
3 changed files with 35 additions and 0 deletions

17
1.m Normal file
View File

@@ -0,0 +1,17 @@
clear all;
close all;
a=1
v2 = ones(1,10)
v = [0, 1,2,3,4,5]
v = [v,8]
figure;
plot(v, 'green')
hold on;
plot(v2, 'red')
figure;
plot(v2)