Тёмный

Plotting in C++ | Part 1 | Gnuplot on Windows 

pnumerics
Подписаться 278
Просмотров 27 тыс.
50% 1

Опубликовано:

 

29 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 31   
@CameronjrWalker
@CameronjrWalker Год назад
Thanks for this video, very much appreciated. I would be interested in more videos showing c++ driving gnuplot
@danielocanto3968
@danielocanto3968 2 месяца назад
When I try to import the gnuplot-iostream library, I get an error that the termios.h library cannot be found. I am working on Windows as I investigated those libraries are for UNIX
@MrQuakk
@MrQuakk Год назад
Hi, Ihave a problem error: building abseil:x86-windows failed with: BUILD_FAILED Please ensure you're using the latest port files with `git pull` and `vcpkg update`.
@anapfloresv6725
@anapfloresv6725 3 месяца назад
Me too, did you solve it?
@edd4837
@edd4837 2 года назад
The variable "gnuplotio::PlotData::has_data" is not initialized. A member variable (type.6) must always be initialized. ConsoleApplication1
@edd4837
@edd4837 2 года назад
and this: C2039 "mode": not a member of "gnuplotio::ModeAutoDecoder"
@DarthVader100500
@DarthVader100500 Год назад
i am watching this video every single day
@JozoLeko
@JozoLeko 2 года назад
Great video. Thanks.
@NicolasSchmidMusic
@NicolasSchmidMusic 2 года назад
So complicated!
@mariuschirita7577
@mariuschirita7577 Год назад
It works, finally a good video that explains it. Follow all the steps in the video and u'll make it work! Thanks you
@roros2512
@roros2512 3 года назад
Thank you very much, it works. I tried several ways to plot using c++ on windows and VS2019 with no luck. In my case, it took almost 2 hours the "Boost Step". Thanks again, great work.
@pnumerics
@pnumerics 3 года назад
Glad it helped!
@paulklasmann1218
@paulklasmann1218 2 года назад
How would you embed the gnuplot plot area within a frame or panel in wxwidgets or similar gui framework?
@kresobetaorionis3400
@kresobetaorionis3400 2 года назад
Hello. Is it possible to set thin but large curly braces in gnuplot?
@michaladmin1512
@michaladmin1512 2 года назад
2:42 I have "command not found". Why?
@mEm__96
@mEm__96 2 года назад
Hey, nice video. Something not strictly related to it: it is now weeks that I am trying to figure out why wt.exe (Terminal Preview) is so laggy on my laptot, specially when in Windows Powershell prompt. But then, at 2:35 (circa) I noticed that, as to me, running the simple "cd" command just took a while (which for me, changing driver takes even longer). May you have some ideas of why?
@michaelkovaliov8877
@michaelkovaliov8877 2 года назад
You need a space between the final and the ", otherwise the output graph sometimes is wrong (try with seed 42 for example) Other than that, great video! It is sad how complex this is
@felipediazvlog
@felipediazvlog 3 года назад
I'd like to make a backtesting, replay-mode, charting software, to manually test and analize price charts (price data of forex, stocks, indices, commodities, etc.), like Forex Tester 5, or TradingView replay mode. I want to develop this with C++, for my Windows computer, a desktop application. But I'm not sure if I should go with libraries like this, or libraries of 2D games, because I need to interact with the charts, I don't need static charts. What do you think? Thanks!
@pnumerics
@pnumerics 3 года назад
For dynamic charting you should avoid gnuplot. You're probably better off with something like plotly or bokeh and somehow connect the dataflow over sockets. e.g. your c++ program publishes data over a socket and subscribes in your python charting application. However, technically in that case they will be two separate apps, so its not totally clean. Check out the ZeroMQ video we did. If you find a simpler way of handling it, leave a comment because I'd be curious to know.
@ГригорийАртемьев-и9ы
Hello, thanks for the guide, please tell me, maybe you can know what's the matter, but I don't have any third-party library in VS, even installed via NuGet. and in the gnu library it finds about 150 errors
@pnumerics
@pnumerics 2 года назад
likely you did not do vcpkg integrate install or you didn't select the correct configuration in visual studio for the libraries you installed (32 vs 64 bit)
@yohannpayet
@yohannpayet 3 года назад
Hi, Thank you for your turorial. I keep running in to problems. When I compile I get: "The application has failed to start because no qt platform plugin gnuplot ....." ( visual studio 2019) . Do you know why this happens?
@pnumerics
@pnumerics 3 года назад
Are you sure you typed the path EXACTLY as I did? If you can, try setting up a virtualbox windows instance, follow the directions. If it works in the VM, then the problem is platform specific to your host. In that case, it would be very difficult for me to diagnose.
@ujjwalkanth9167
@ujjwalkanth9167 2 года назад
Hello, can this be done with VScode? If so I am getting an error while installing the boost packages which says "error: in triplet x64-windows: Unable to find a valid Visual Studio instance Could not locate a complete Visual Studio instance" Any suggestions?
@orderfromchaos9282
@orderfromchaos9282 5 месяцев назад
same here i think we should have visual studio with with than code
@ESCAcarlos
@ESCAcarlos 2 года назад
Thank you! it works!
@roros2512
@roros2512 3 года назад
09:03 why do you change to x64? I am using x86, seems to work fine for me.
@pnumerics
@pnumerics 3 года назад
simply a preference :)
@flubbablubba123
@flubbablubba123 2 года назад
Hi, thanks for the tutorial. Just for general information, I faced two issues. Problem 1: Installing boost via vcpkg threw a build error for the openssl package. All the other packages worked fine. Could very well be that this is an error due to my windows 8.1 machine. Fix 1: I ignored it.. For plotting I think this package is not needed. Problem 2: For some reason, the install did not include the packages boost-iostreams. Going by alphabet, they should be installed prior to the openssl package that caused an error. So no idea why they were not installed. Fix: I had to install them seperately afterwards using powershell. Rest seems to work fine. Thanks again :-)
@pnumerics
@pnumerics 2 года назад
Thanks for the update. There definitely seems to be an issue. I'll put a disclaimer in the title or description of the video.
@flubbablubba123
@flubbablubba123 2 года назад
@@pnumerics no problem. Followed the guide on a Windows 10 desktop PC and none of the errors/issues occurred. No error on the installation of openssl package. Package boost-iostreams was correctly included in the install. May have actually been an issue (at least in part) caused by my old Windows 8.1 OS. Thought I update on that.
Далее
Plotting in C++ | Part 2 | Gnuplot on Windows
11:33
Просмотров 5 тыс.
Se las dejo ahí.
00:10
Просмотров 3,3 млн
titan tvman's plan (skibidi toilet 77)
01:00
Просмотров 6 млн
programming projects that taught me how to code
9:49
Просмотров 294 тыс.
Learning C++ by making a Game... in 1 Week?!
10:14
Просмотров 482 тыс.
How computer processors run conditions and loops
17:03
Просмотров 106 тыс.
Comparing C to machine language
10:02
Просмотров 5 млн
Premature Optimization
12:39
Просмотров 811 тыс.
Fast Inverse Square Root - A Quake III Algorithm
20:08
gnuplot : Lecture: 1 (Plotting,labelling,marking)
30:19
Cross Platform Graphical User Interfaces in C++
44:49
Просмотров 868 тыс.
Se las dejo ahí.
00:10
Просмотров 3,3 млн