Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
f1d43a8122
17
.obsidian/bookmarks.json
vendored
17
.obsidian/bookmarks.json
vendored
@ -4,23 +4,6 @@
|
||||
"type": "file",
|
||||
"ctime": 1731951492555,
|
||||
"path": "0 Managerial Pages/1. Task Dashboard.md"
|
||||
},
|
||||
{
|
||||
"type": "file",
|
||||
"ctime": 1730397400319,
|
||||
"path": "0 Managerial Pages/To Do List.md",
|
||||
"title": "To Do - General"
|
||||
},
|
||||
{
|
||||
"type": "file",
|
||||
"ctime": 1730397409494,
|
||||
"path": "4 Qualifying Exam/1 Managing Stuff/0. QE To Do List.md",
|
||||
"title": "To Do - Qualifying Exam"
|
||||
},
|
||||
{
|
||||
"type": "file",
|
||||
"ctime": 1731951337156,
|
||||
"path": "300s School/ME 2016 - Nonlinear Dynamical Systems 1/To Do - ME 2016.md"
|
||||
}
|
||||
]
|
||||
}
|
||||
6
.obsidian/graph.json
vendored
6
.obsidian/graph.json
vendored
@ -1,5 +1,5 @@
|
||||
{
|
||||
"collapse-filter": true,
|
||||
"collapse-filter": false,
|
||||
"search": "",
|
||||
"showTags": false,
|
||||
"showAttachments": false,
|
||||
@ -67,6 +67,6 @@
|
||||
"repelStrength": 6.14583333333333,
|
||||
"linkStrength": 0.4765625,
|
||||
"linkDistance": 207,
|
||||
"scale": 0.9974854539557366,
|
||||
"close": true
|
||||
"scale": 0.45701546612642585,
|
||||
"close": false
|
||||
}
|
||||
@ -3,8 +3,8 @@
|
||||
"anuppuccin-theme-settings@@anuppuccin-accent-toggle": true,
|
||||
"anuppuccin-theme-settings-extended@@anp-theme-ext-light": true,
|
||||
"anuppuccin-theme-settings-extended@@anp-theme-ext-dark": true,
|
||||
"anuppuccin-theme-settings-extended@@catppuccin-theme-extended": "ctp-notion-light",
|
||||
"anuppuccin-theme-settings-extended@@catppuccin-theme-dark-extended": "ctp-gruvbox-dark",
|
||||
"anuppuccin-theme-settings-extended@@catppuccin-theme-extended": "ctp-solarized-light",
|
||||
"anuppuccin-theme-settings-extended@@catppuccin-theme-dark-extended": "ctp-kanagawa-dark",
|
||||
"anuppuccin-theme-settings@@anuppuccin-theme-dark": "ctp-frappe",
|
||||
"anuppuccin-theme-settings@@anp-custom-checkboxes": true,
|
||||
"anuppuccin-theme-settings@@anp-speech-bubble": true,
|
||||
|
||||
@ -5,15 +5,6 @@ tags:
|
||||
- Management
|
||||
---
|
||||
# Tasks
|
||||
## Undated
|
||||
---
|
||||
```dataview
|
||||
TASK
|
||||
where !completed
|
||||
and status != "-"
|
||||
and !due
|
||||
group by file.folder
|
||||
```
|
||||
## Overdue
|
||||
---
|
||||
```dataview
|
||||
@ -23,8 +14,20 @@ where !completed
|
||||
and due
|
||||
and due < date(today)
|
||||
sort due asc
|
||||
group by tags
|
||||
|
||||
```
|
||||
|
||||
## Undated
|
||||
---
|
||||
```dataview
|
||||
TASK
|
||||
where !completed
|
||||
and status != "-"
|
||||
and !due
|
||||
group by file.folder
|
||||
```
|
||||
|
||||
## Next 2 Weeks
|
||||
---
|
||||
```dataview
|
||||
|
||||
@ -0,0 +1,36 @@
|
||||
---
|
||||
date: 2025-01-16
|
||||
tags:
|
||||
---
|
||||
# Links to Other Pages
|
||||
## Yesterday | Tomorrow
|
||||
<< [[1 Daily Notes/2025/2025-01-15]] | [[1 Daily Notes/2025/2025-01-17 ]] >>
|
||||
## This Week's Weekly Note
|
||||
[[ Weekly Note 2025-01-15]]
|
||||
# Summary
|
||||
## What's Overdue!
|
||||
```dataview
|
||||
task
|
||||
from "1 Daily Notes"
|
||||
where !completed
|
||||
and status != "-"
|
||||
and file.name != this.file.name
|
||||
group by file.name
|
||||
```
|
||||
## What's the plan!
|
||||
- [ ] [[Homework 1]] 📅 2025-01-23 #ME2046 #Homework
|
||||
- [ ] [[Cyber-Physical System Failure]] 📅 2025-01-21 #ME2150 #Homework
|
||||
- [ ] [[2025-01-16 HACMS Program Overview]] #ME2150 #Lecture
|
||||
- [ ] Fix weekly note automatic day linking
|
||||
- [ ] [[2025-01-16 The Z Transform]] #ME2046 #Lecture
|
||||
|
||||
## What's the results!
|
||||
```dataview
|
||||
task
|
||||
from "1 Daily Notes"
|
||||
where completed
|
||||
and completion = date(this.file.name)
|
||||
and file.name != this.file.name
|
||||
group by file.name
|
||||
```
|
||||
# Calendar Tasks
|
||||
32
1 Daily Notes/2025/2025-01-17.md
Normal file
32
1 Daily Notes/2025/2025-01-17.md
Normal file
@ -0,0 +1,32 @@
|
||||
---
|
||||
date: 2025-01-17
|
||||
tags:
|
||||
---
|
||||
# Links to Other Pages
|
||||
## Yesterday | Tomorrow
|
||||
<< [[1 Daily Notes/2025/2025-01-16]] | [[1 Daily Notes/2025/2025-01-20 ]] >>
|
||||
## This Week's Weekly Note
|
||||
[[ Weekly Note 2025-01-15]]
|
||||
# Summary
|
||||
## What's Overdue!
|
||||
```dataview
|
||||
task
|
||||
from "1 Daily Notes"
|
||||
where !completed
|
||||
and status != "-"
|
||||
and file.name != this.file.name
|
||||
group by file.name
|
||||
```
|
||||
## What's the plan!
|
||||
- [ ] Make bullet list for Gleeson about what is not clear for QE #GSA
|
||||
|
||||
## What's the results!
|
||||
```dataview
|
||||
task
|
||||
from "1 Daily Notes"
|
||||
where completed
|
||||
and completion = date(this.file.name)
|
||||
and file.name != this.file.name
|
||||
group by file.name
|
||||
```
|
||||
# Calendar Tasks
|
||||
79
2 Cole Group Meeting Notes/Weekly Note 2025-01-20.md
Normal file
79
2 Cole Group Meeting Notes/Weekly Note 2025-01-20.md
Normal file
@ -0,0 +1,79 @@
|
||||
---
|
||||
date: 2025-01-20
|
||||
modification date: Thursday 16th January 2025 13:32:14
|
||||
tags: []
|
||||
---
|
||||
<< [[2 Cole Group Meeting Notes/Weekly Note 2025-01-13]] | [[2 Cole Group Meeting Notes/Weekly Note 2025-01-27]] >>
|
||||
|
||||
# This Week's Daily Notes
|
||||
[[2025-01-13]]
|
||||
[[2025-01-14]]
|
||||
[[2025-01-15]]
|
||||
[[2025-01-18]]
|
||||
[[2025-01-19]]
|
||||
# Last Week's Plan
|
||||
# Accomplishments
|
||||
## Remarks
|
||||
## Tasks and Notes From This Past Week
|
||||
```dataview
|
||||
TASK
|
||||
where completed
|
||||
and completion >= this.date - dur(7 days)
|
||||
and completion <= this.date
|
||||
group by file.folder
|
||||
sort completion asc
|
||||
```
|
||||
## Papers read this past week
|
||||
```dataview
|
||||
table title as "Title", dateread as "Date Read"
|
||||
where readstatus and dateread => this.date-dur(7)
|
||||
|
||||
```
|
||||
# This Week's Plan
|
||||
## Remarks
|
||||
## Tasks This Next Week
|
||||
### Tasks Overdue
|
||||
```dataview
|
||||
task
|
||||
where
|
||||
due <= date(this.date)
|
||||
and due
|
||||
and !completed
|
||||
and status != "-"
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
### Tasks Due this Week
|
||||
```dataview
|
||||
task
|
||||
where
|
||||
due >= this.date
|
||||
and due <= this.date + dur(7 days)
|
||||
and due
|
||||
and !completed
|
||||
and status != "-"
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
### Tasks in Progress
|
||||
```dataview
|
||||
task
|
||||
where
|
||||
status != "-"
|
||||
and status = "/"
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
### Tasks Scheduled
|
||||
```dataview
|
||||
task
|
||||
where
|
||||
scheduled
|
||||
and scheduled >= this.date
|
||||
and scheduled <= this.date + dur(7 days)
|
||||
and due > this.date +dur(7 days)
|
||||
and !completed
|
||||
and status != "-"
|
||||
sort due asc
|
||||
group by file.folder
|
||||
```
|
||||
@ -0,0 +1,52 @@
|
||||
---
|
||||
readstatus: false
|
||||
dateread:
|
||||
title: "ME2046_Sampled_Data_Analysis_Reading_Chapter_2.pdf: 2254 ME 2046 SEC1000 DIGITAL CONTROL SYSTEMS"
|
||||
year: Error: `format` can only be applied to dates. Tried for format object
|
||||
authors:
|
||||
|
||||
citekey: "ME2046_Sampled_Data_Analysis_Reading_Chapter_2pdf2254ME"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
---
|
||||
# Indexing Information
|
||||
## DOI
|
||||
[](https://doi.org/)
|
||||
## ISBN
|
||||
[](https://www.isbnsearch.org/isbn/)
|
||||
## Tags:
|
||||
|
||||
|
||||
>[!Abstract]
|
||||
>
|
||||
|
||||
>[!note] Markdown Notes
|
||||
>None!
|
||||
|
||||
>[!seealso] Related Papers
|
||||
>
|
||||
|
||||
# Annotations
|
||||
|
||||
>[!attention] Highlight
|
||||
> *The result is illustrated in Figure 2.8. Note that the reconstructed signal is lagging behind the original signal. The reason is that the sampled signal did not contain values before t = 0 and only has finite terms. The interpolation formula is based on infinite series with both past and future samples available.*
|
||||
>
|
||||
|
||||
>[!attention] Highlight
|
||||
> * ( ) mod( ) 1 N S N*
|
||||
>
|
||||
> >[!note] Note
|
||||
> >NOTE! This uses the NYQUIST frequency. NOT the sampling frequency.
|
||||
|
||||
>[!attention] Highlight
|
||||
> *One serious problem with the ideal low-pass filter given by Eq. (2.10) is that the filter is non-causal, since h(t) is nonzero for t < 0. h(t) starts at t while the impulse that triggers the response does not occur until t 0*
|
||||
>
|
||||
|
||||
### Imported: 2025-01-16 6:03 pm
|
||||
|
||||
|
||||
@ -7857,7 +7857,8 @@ for defect classification of TFT–LCD panels.pdf}
|
||||
@online{ME2046_Sampled_Data_Analysis_Reading_Chapter_2pdf2254ME,
|
||||
title = {{{ME2046}}\_{{Sampled}}\_{{Data}}\_{{Analysis}}\_{{Reading}}\_{{Chapter}}\_2.Pdf: 2254 {{ME}} 2046 {{SEC1000 DIGITAL CONTROL SYSTEMS}}},
|
||||
url = {https://canvas.pitt.edu/courses/301794/files/19363969?module_item_id=5477527},
|
||||
urldate = {2025-01-09}
|
||||
urldate = {2025-01-09},
|
||||
file = {/home/danesabo/Zotero/storage/YNCF6DPS/ME2046_Sampled_Data_Analysis_Reading_Chapter_2.pdf 2254 ME 2046 SEC1000 DIGITAL CONTROL SYSTEMS.pdf}
|
||||
}
|
||||
|
||||
@online{ME2046_The_z_transform_Chapter_3pdf2254ME,
|
||||
@ -7866,6 +7867,13 @@ for defect classification of TFT–LCD panels.pdf}
|
||||
urldate = {2025-01-09}
|
||||
}
|
||||
|
||||
@online{ME2046_The_z_transform_Chapter_3pdf2254MEa,
|
||||
title = {{{ME2046}}\_{{The}}\_z\_transform\_{{Chapter}}\_3.Pdf: 2254 {{ME}} 2046 {{SEC1000 DIGITAL CONTROL SYSTEMS}}},
|
||||
url = {https://canvas.pitt.edu/courses/301794/files/19363970?module_item_id=5477528},
|
||||
urldate = {2025-01-16},
|
||||
file = {/home/danesabo/Zotero/storage/64RKS2MZ/ME2046_The_z_transform_Chapter_3.pdf 2254 ME 2046 SEC1000 DIGITAL CONTROL SYSTEMS.pdf;/home/danesabo/Zotero/storage/3ZCR7KAV/19363970.html}
|
||||
}
|
||||
|
||||
@online{ME2046_The_z_transform_Chapter_3pdf2254MEb,
|
||||
title = {{{ME2046}}\_{{The}}\_z\_transform\_{{Chapter}}\_3.Pdf: 2254 {{ME}} 2046 {{SEC1000 DIGITAL CONTROL SYSTEMS}}},
|
||||
url = {https://canvas.pitt.edu/courses/301794/files/19363970?module_item_id=5477528},
|
||||
|
||||
@ -1,3 +1,4 @@
|
||||
# [[ME2046_Sampled_Data_Analysis_Reading_Chapter_2pdf2254ME]]
|
||||
# Impulse Sampling
|
||||
How do we represent a sequence of numbers?
|
||||
Impulse sampling does it by
|
||||
@ -48,5 +49,8 @@ The spectrum of the sampled signal is also a periodic function of frequency with
|
||||
![[Pasted image 20250109181319.png]]
|
||||
A lot of times, we need to filter the high frequency stuff out, or else we'll get some issues with aliasing.
|
||||
|
||||
**Band Limited** $|X(j\omega)|=0 \forall |\omega|>\omega_0$
|
||||
|
||||
# Shannon's Sampling Theorem
|
||||
- x(t) can be uniquely determined if the samples have sampling frequency with a specific
|
||||
![[Pasted image 20250116160940.png]]
|
||||
![[Pasted image 20250116161008.png]]
|
||||
@ -0,0 +1,2 @@
|
||||
**Verification** - Is the code correct?
|
||||
**Validation** - Is the code built correctly for the purpose?
|
||||
BIN
Pasted image 20250116160940.png
Normal file
BIN
Pasted image 20250116160940.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 74 KiB |
BIN
Pasted image 20250116161008.png
Normal file
BIN
Pasted image 20250116161008.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 103 KiB |
Loading…
x
Reference in New Issue
Block a user