plot(
plot(),
plot(),
...
)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| clearvars; | |
| x = 1; | |
| y = exp(x); | |
| tol = 1e-10; | |
| deg = 0; | |
| [h, member] = tay(x,deg); | |
| error = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I (2617) Pinger: Initializing SNTP | |
| I (2617) Pinger: Waiting for system time to be set... (1/10) | |
| I (4627) Pinger: System time was set | |
| I (4627) Pinger: Start pinging | |
| pf->send_count: 1 | |
| pf->send_count: 2 | |
| pf->send_count: 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <string.h> | |
| #include <time.h> | |
| #include <sys/time.h> | |
| #include "freertos/FreeRTOS.h" | |
| #include "freertos/task.h" | |
| #include "freertos/event_groups.h" | |
| #include "lwip/sys.h" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I (4863) Pinger: Start pinging | |
| pf->send_count: 1 | |
| pf->send_count: 2 | |
| pf->send_count: 3 | |
| pf->send_count: 4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import fetch from "node-fetch" | |
| export interface PingData { | |
| total_rows: number | |
| offset: number | |
| rows: Row[] | |
| } | |
| type packageid = string | |
| export interface Row { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "rapidjson/document.h" | |
| #include <stack> | |
| #include <unordered_set> | |
| #include <vector> | |
| using namespace rapidjson; | |
| using namespace std; | |
| #define PATH "/home/andrea/Desktop/dependencies.json" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <freetype2/ft2build.h> | |
| #include FT_FREETYPE_H | |
| int main() { | |
| FT_Library ft; | |
| FT_Error err = FT_Init_FreeType(&ft); | |
| if (err != 0) { | |
| printf("Failed to initialize FreeType\n"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <freetype2/ft2build.h> | |
| #include FT_FREETYPE_H | |
| #include FT_LCD_FILTER_H | |
| #define STB_IMAGE_WRITE_IMPLEMENTATION | |
| #include "./stb_image_write.h" | |
| int main() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>DFT</title> | |
| <style> | |
| h1 { | |
| font-family: sans-serif; | |
| } | |
| #canvas_container { |