robertgj
robertgj
My attempt: ``` %% Copyright (C) 2014, 2016-2019 Colin B. Macdonald %% %% The symbolic-2.9.0 package does not support the SymPy collect function. %% This code is copied from octave/packages/symbolic-2.9.0/@sym/factor.m...
This is better: ``` diff --git a/cmake/modules/c_flags.cmake b/cmake/modules/c_flags.cmake index 44052bb..8b79838 100644 --- a/cmake/modules/c_flags.cmake +++ b/cmake/modules/c_flags.cmake @@ -21,6 +21,7 @@ add_cflag_if_supported("-Wall") add_cflag_if_supported("-Wextra") add_cflag_if_supported("-Wshadow") add_cflag_if_supported("-D_FORTIFY_SOURCE=2") +add_cflag_if_supported("-O") add_cflag_if_supported("-fstrict-aliasing") add_cflag_if_supported("-Wundef") add_cflag_if_supported("-Wformat") ```
On Tue, 28 Jun 2022 03:36:57 -0700 Grzegorz Szymaszek ***@***.***> wrote: > > -- Looking for sys/mman.h - not found > > That was your original problem. > Exactly. It...
Hi, See my comment: https://github.com/stlink-org/stlink/issues/1257#issuecomment-1168114724 It appears that st-link is compiled with the default -O0 optimisation. If you want -D_FORTIFY_SOURCE=2 then enable optimisation in c_flags.cmake with -O. Otherwise remove -D_FORTIFY_SOURCE=2...
On Wed, 02 Sep 2020 03:54:30 -0700 Leonardo Robol wrote: > Indeed, I have to admit that the Octave interface is practically not > maintained anymore; however, the MATLAB interface...
I am using scs-matlab,scs-3.2.3, octave-10.0.0 and YALMIP on Fedora39. I think this problem occurs because in src/cones.c : set_up_sd_cone_work_space(), n_max==0 is passed to dsyev.f as both the third argument, N,...
Yes, that is what I did.
For what it's worth, here is some code for Octave that reproduces DLMF Figure 22.16.3 (svg output included) [jacobi_Zeta.zip](https://github.com/boostorg/math/files/3388778/jacobi_Zeta.zip)
I guess I ought follow up with an opinion: DLMF Figure 22.16.3 confuses things by showing the argument as a multiple of pi. It seems to me that Jacobi's Zeta...
On Mon, 15 Jul 2019 05:00:42 -0700 "Paul A. Bristow" wrote: > Thanks for both the graph and code to generate, (very pretty ;-) and > mostly for confirmation of...