Replace array by pointer allocation for MSVC
Fixed by 6af1bda4 (Ethan Merritt) - thanks!
Since you asked for C99 compliance: MSVC is complinat to C11 and C17, but there is no plan to support variable length arrays, used in this newly added code, due to security concerns (see https://devblogs.microsoft.com/cppblog/c11-and-c17-standard-support-arriving-in-msvc/#variable-length-arrays).
As you asked for C99 compliance: MSVC is complinat to C11 and C17, but there is no plan to support variable length arrays, used in this newly added code, due to security concerns (see https://devblogs.microsoft.com/cppblog/c11-and-c17-standard-support-arriving-in-msvc/#variable-length-arrays).
Corrected the allocation size and added the missing free(). This is the most current MSVC compiler (2022 v 17.6.5) which errors out at this newly added code. I found no other problems elsewhwere in the code (monthly runs at https://github.com/AlexanderTaeschner/gnuplot).
Replace array by pointer allocation for MSVC
Fix typo and missing cast in winmain.c
First of all, thank you for this very good software! I have one enhancement request:...
Add smooth histogram option to plot command
Add options to set table command
In the attached patch I added a new overwrite option to the update command, so that...
removal of the backup file in update: I might be wrong, but I think the idea was...
Could you please detail your envisaged usage? Since we already print the correlation...
Add abort command
Thank you for the reindentaion and the good solution of the variance == 0 case. Your...
The alignment of the output of the new variables is different. As I don't see a sensible...
Extend stats command: skewness and kurtosis + standard errors of moments
Add option covariancevariables to set fit and minor fit changes
1) removes a redundant field that it added to udft_entry (I never did figure out...
The fact that it does not reach the exact solution is why I started the discussion...
I just installed a virtual Ubuntu machine and added the necessary changes in the...
I updated the patch again and changed the calling convention to f(x)=external("example:sinc")...
I just retested the patch with both the test case from Orear and a second one from...
Attached is an updated version of this patch. Since I can only test it on Windows...
MSVC 2013 indeed supports the used initializations, I just compiled the code without...