如何将MATLAB中的数据存储到Access DB?
我想将 MATLAB 中神经网络的结果存储到 Access 数据库,并将视频存储到同一数据库。其他时候,当每个人从神经网络中得到相同的图片时,他的输出是之前存储在数据库中的视频......
你能帮助我吗?
I want to store my results from neural network in MATLAB to Access database, and also store video with it to the same database. For other time when everyone result the same pic from neural network the output for him is video that was stored before in DB...
Can you help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除了商业 Database Toolbox 之外,您还可以通过 MATLAB 中的 Java 脚本访问数据库。有关如何从 MATLAB 使用 Java 的更多详细信息,请参阅手册。
此方法的首要要求是数据库的 JDBC 驱动程序。
Apart from the commercial Database Toolbox you may access your DB via Java scripting in MATLAB. See the manual for further details about how to use Java from MATLAB.
First requirement for this approach is a JDBC driver for your database.
我建议使用 ADO OLE 数据库连接文件交换。 Access 数据库非常快速且易于使用。
安装它并查看 adodb_demo.m 的代码示例。
在 这个问题中,您可以找到使用 ADODB 对象的示例直接地。这与上述提交中使用的方法相同。
I would recommend to use ADO OLE Database Connection from File Exchange. Very fast and easy to use with Access database.
Install it and look at adodb_demo.m for code example.
In this question you can find an example of using ADODB object directly. It's the same approach used in the above submission.