vault backup: 2025-02-10 11:02:01

This commit is contained in:
Dane Sabo 2025-02-10 11:02:01 -05:00
parent 420e611019
commit d8b46d05e9
4 changed files with 34 additions and 66 deletions

View File

@ -187,7 +187,8 @@
"tagC": 175,
"ME046": 176,
"Reading": 177,
"Union": 178
"Union": 178,
"Follow-Up": 179
},
"_version": 3
}

View File

@ -18,6 +18,7 @@ group by tags
```
# Calendar Tasks
- More literature Note wor [startTime:: 10:30] [endTime:: 11:00]
- TAL? Whatever Dan is on about [startTime:: 15:00] [endTime:: 16:00]
- ME2016 HW2 [startTime:: 14:00] [endTime:: 15:00]
- NUCE 2113 Lab Report 3 [startTime:: 13:00] [endTime:: 14:00]

View File

@ -71,38 +71,39 @@ pages: {{ pages }}
>{% for r in relations %}[{{ r.title }}]({{ r.citekey }}){% if not loop.last %}, {% endif %}{% endfor %}
# Annotations
{# Process non-Purple highlights #}
{% for a in annotations %}
## Notes
{# Process non-Purple highlights -#}
{% for a in annotations -%}
{% if a.type == "highlight" and a.colorCategory != "Purple" -%}
{% if a.colorCategory == "Yellow" -%}
{% if a.colorCategory == "Yellow" %}
>[!attention] Highlight
{% elif a.colorCategory == "Green" -%}
>[!done] Quote
{% elif a.colorCategory == "Orange" -%}
>[!question] Don't Understand
{% elif a.colorCategory == "Red" -%}
>[!fail] Possibly Incorrect
{% else -%}
{% elif a.colorCategory == "Green" %}
>[!done] Insight
{% elif a.colorCategory == "Orange" %}
>[!warning] S?
{% elif a.colorCategory == "Red" %}
>[!fail] Dubious
{% else %}
>[!quote] Other Highlight
{% endif -%}
> *{{ a.annotatedText }}*
> {% if a.comment %}
> >[!note] Note
> >{{ a.comment }}
>
{% endif -%}
> {{ a.annotatedText }}
{% if a.comment -%}
>
> *{{ a.comment }}*
{% endif -%}
{% endif -%}
{% endfor %}
## Tasks
{%- endfor %}
## Follow-Ups
{# Create a separate loop for Purple highlights as tasks #}
{% for a in annotations %}
{% if a.type == "highlight" and a.colorCategory == "Purple" %}
- [ ] {{ a.annotatedText }}
{% if a.comment %}
> Note: {{ a.comment }}
{% endif %}
{% endif %}
{% endfor %}
{% for a in annotations -%}
{% if a.type == "highlight" and a.colorCategory == "Purple" -%}
>[!example]
>{{ a.annotatedText }}
>- [ ] {{ a.comment }} #Follow-Up
{% if a.comment -%}
{% endif -%}
{% endif -%}
{% endfor -%}
### Imported: {{ importDate | format("YYYY-MM-DD h:mm a") }}

View File

@ -16,43 +16,8 @@ citekey: "ME2046_Sampled_Data_Analysis_Reading_Chapter_2pdf2254ME"
>
# Annotations
## Notes
## Follow-Ups
>[!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*
> ```
>
## Tasks
- [ ] he Laplace trans
> Note: blah blah blah blah
### Imported: 2025-02-10 10:25 am
### Imported: 2025-02-10 10:59 am