gokul9 commited on
Commit
21da66b
·
verified ·
1 Parent(s): 4d8e986

Upload 3 files

Browse files
.gitattributes CHANGED
@@ -34,3 +34,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  octave-9.4.0-w64-installer.exe filter=lfs diff=lfs merge=lfs -text
 
 
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  octave-9.4.0-w64-installer.exe filter=lfs diff=lfs merge=lfs -text
37
+ octave/Matlab[[:space:]]Tutorial[[:space:]]for[[:space:]]Absolute[[:space:]]Beginners:[[:space:]]Learn[[:space:]]Matlab[[:space:]]via[[:space:]]Octave[[:space:]]in[[:space:]]1[[:space:]]hr[[:space:]]and[[:space:]]30[[:space:]]min.mp4 filter=lfs diff=lfs merge=lfs -text
octave/Matlab Tutorial for Absolute Beginners: Learn Matlab via Octave in 1 hr and 30 min.mp4 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:963a2864861b0d787b63099a68a4283b5601c8072614a91991cc59f9c5446639
3
+ size 186019839
octave/Using Octave - Octave (18_3_2025 6:23:16 pm).html ADDED
The diff for this file is too large to render. See raw diff
 
octave/bilinear.txt ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ans = 0.9589
2
+ >> cos(360)
3
+ ans = -0.2837
4
+ >> s=tf('s')
5
+ error: 'tf' undefined near line 1, column 3
6
+
7
+ The 'tf' function belongs to the control package from Octave Forge which
8
+ you have installed, but not loaded. To load the package, type
9
+ ‘pkg load control’ from the Octave prompt.
10
+ >> pkg load control
11
+ >> s=tf('s')
12
+
13
+ Transfer function 's' from input 'u1' to output ...
14
+
15
+ y1: s
16
+
17
+ Continuous-time model.
18
+ >> g=2/(s+1)
19
+
20
+ Transfer function 'g' from input 'u1' to output ...
21
+
22
+ 2
23
+ y1: -----
24
+ s + 1
25
+
26
+ Continuous-time model.
27
+ >> gz=c2d(g,1,'tustin')
28
+
29
+ Transfer function 'gz' from input 'u1' to output ...
30
+
31
+ 0.6667 z + 0.6667
32
+ y1: -----------------
33
+ z - 0.3333
34
+
35
+ Sampling time: 1 s
36
+ Discrete-time model.
37
+ >> gz=c2d(g,0.1,'tustin')
38
+
39
+ Transfer function 'gz' from input 'u1' to output ...
40
+
41
+ 0.09524 z + 0.09524
42
+ y1: -------------------
43
+ z - 0.9048
44
+
45
+ Sampling time: 0.1 s
46
+ Discrete-time model.
47
+ >> bode(g,gz)
48
+ >>
49
+
50
+
51
+
52
+
53
+
54
+
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+ additional'
63
+
64
+
65
+ x = -10:0.1:10; # Create an evenly-spaced vector from -10..10
66
+ y = sin (x); # y is also a vector
67
+ plot (x, y);
68
+ title ("Simple 2-D Plot");
69
+ xlabel ("x");
70
+ ylabel ("sin (x)");