06 2023 档案
摘要:https://www.gameludere.com/2021/05/13/splines-and-bezier-curves-and-their-application-in-video-games/
阅读全文
摘要:https://github.com/GavriYashar/Matlab-Editor-Plugin/wiki/Features https://undocumentedmatlab.com/articles/spicing-up-the-matlab-editor
阅读全文
摘要:环形拓扑: ```matlab s = 1:5; t = circshift(s, -1); ``` 三角形 + 环形拓扑: ```matlab s = 1:5; t = circshift(s, -1); s = [s s(1) s(end)]; t = [t 6 6]; ``` 网格拓扑 ```
阅读全文
摘要:https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html
阅读全文
摘要:https://www.techiedelight.com/zh/merge-sort/ https://www.runoob.com/w3cnote/merge-sort.html
阅读全文
摘要:py implementation: https://gist.github.com/joe-jordan/6548029 ref: https://cs.stackexchange.com/questions/7216/find-the-simple-cycles-in-a-directed-gr
阅读全文