上一页 1 2 3 4 5 6 ··· 43 下一页
摘要: 参考链接: https://blog.csdn.net/love906897406/article/details/124504065 https://blog.csdn.net/libai13/article/details/108095947 卸载VS2022 没找到官网的VS2019,随便找个 阅读全文
posted @ 2024-09-09 13:34 橘子Jane 阅读(47) 评论(0) 推荐(0)
摘要: 本地环境: VS2022 安装的NuGet包:Eigen版本3.3.9 配置MKL 头文件相关代码 #include <cmath> #include <math.h> #include <stddef.h> #include <stdlib.h> #include <string.h> void 阅读全文
posted @ 2024-08-05 09:59 橘子Jane 阅读(56) 评论(4) 推荐(0)
摘要: 这是哪错了呀 阅读全文
posted @ 2024-08-01 09:23 橘子Jane 阅读(32) 评论(0) 推荐(0)
摘要: 问:讲解以下C++代码 点击查看代码 template <typename T> T quickPow(T a, int n) { T res = 1; while (n > 0) { if (n % 2 == 1) { res = res * a; } a = a * a; n /= 2; } r 阅读全文
posted @ 2024-07-29 16:51 橘子Jane 阅读(29) 评论(0) 推荐(0)
摘要: 运行现有代码、配置本地环境 用领导的代码在本地运行,借机配置Eigen库和Intel的MKL Eigen库VS2022建议使用vcpkg安装,但vcpkg使用需要学习时间,所以直接用Nuget安装了 安装之后报错找不到mkl.h 在官网下载oneMKL(https://www.intel.cn/co 阅读全文
posted @ 2024-06-19 09:57 橘子Jane 阅读(286) 评论(2) 推荐(0)
摘要: 参考链接:https://www.jb51.net/article/143382.htm 上面这个文章好啊,清楚明白 得用脑子,脑子不好使的时候先休息 爱你,么么哒 阅读全文
posted @ 2024-06-18 10:06 橘子Jane 阅读(18) 评论(0) 推荐(0)
摘要: 参考资料: https://www.swvq.com/boutique/detail/tanhehakkg 到下面这里,我电脑里路径没有那么深 在我的VS2022中链接器-输入-添加附加依赖项中也没有配置好 阅读全文
posted @ 2024-06-10 23:40 橘子Jane 阅读(201) 评论(0) 推荐(0)
摘要: 文具 笔 模块笔 宝克PC3988 四色按压中性笔 按动阻塞感强 笔尖塑胶差 写着感觉很顺滑 阅读全文
posted @ 2024-06-04 14:08 橘子Jane 阅读(29) 评论(0) 推荐(0)
摘要: 参考链接:https://blog.csdn.net/Huanghuali_/article/details/121856338 在项目-build中取消勾选Shadow build,再重新构建时报了很多错 再次将shadow build勾选上,重新构建后运行正常显示 虽然程序能运行并显示正确,但现 阅读全文
posted @ 2024-05-29 11:00 橘子Jane 阅读(139) 评论(0) 推荐(0)
摘要: 解决方法:清理并重新生成解决方案 参考链接:https://blog.csdn.net/yhj198927/article/details/124327281 阅读全文
posted @ 2024-05-28 13:05 橘子Jane 阅读(450) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 43 下一页