Skip to main content

All Questions

Tagged with or
Filter by
Sorted by
Tagged with
Advice
1 vote
3 replies
63 views

I have an embedded device that implements an unknown 32-bit CRC-based checksum algorithm in hardware. I can use this device as an oracle to generate checksum values from arbitrary input, and verify ...
perniciousquery's user avatar
0 votes
0 answers
65 views

I have a 3D rasterization rendering program on scratch.mit.edu, which has proper movement and rotation matrices for yaw and pitch (not roll). The grid is located on y=-50, and I have near plane and ...
Person12343's user avatar
2 votes
1 answer
179 views

The inverse of the gamma function over the reals is multivalued with an infinite number of branches. This self-answered question is about the principal inverse of the gamma function, Γ0-1(x), whose ...
njuffa's user avatar
  • 27.1k
Advice
0 votes
13 replies
203 views

I'm wondering how the truncate function works. C++ is just an example i'm using because it's a language I know. I've searched online and I can't seem to find how it works, simply how to use it and ...
nugget's user avatar
  • 71
Advice
1 vote
9 replies
112 views

I have a binary tree which leafs have a size of 1, and the parent double in size at each level. I project those nodes on a linear axe (memory space). I need to get the equation that gives the adress ...
Simon's user avatar
  • 2,143
-3 votes
1 answer
50 views

I use a learning management system from my coaching classes, and due to copyrighted material, I can't share screenshots here. However, I'm attempting to convert typed math to Latex/Mathjax math ...
chickfeet08's user avatar
1 vote
0 answers
76 views

I have a QEF implementation like this float atA[3][3] = { 0 }; FVector atb = FVector::ZeroVector; for (const FEdgeIntersection& e : IntersectionList) { const FVector& n = e.Normal; ...
ma1169's user avatar
  • 1,243
2 votes
0 answers
54 views

I'm computing PDE residuals for The_Well datasets (e.g. turbulent_radiative_layer_2D and shear_flow) using finite differences, but the residuals are much larger than I expect. The data are generated ...
Kain's user avatar
  • 21
3 votes
3 answers
154 views

I am currently writing a program in C to convert numbers between bases as an exercise. It asks the user for an input and for the base, that the number given is. It then gives the input into the ...
Brentspine's user avatar
  • 1,040
1 vote
0 answers
61 views

I’m using a Force Dimension Omega.7. From its 3×3 rotation matrix 𝑅 , I extract ZYX Euler angles (Yaw–Pitch–Roll) as: double yaw= std::atan2(R\[1\]\[0\], R\[0\]\[0\]); // Z double pitch = std::...
frheuwid's user avatar
-1 votes
1 answer
128 views

I am not fond of floating point numbers and so have decided to make a custom fixed point number type that I can use for everything that doesn't strictly require floats. Unfortunately this task is not ...
Licorice Lizard's user avatar
0 votes
1 answer
77 views

I'm building a Q&A chat widget that uses marked.js for Markdown rendering and KaTeX for mathematical expressions. The backend returns LaTeX-formatted math, but it's displaying as raw text instead ...
user29255210's user avatar
1 vote
0 answers
91 views

I have a problem in MATLAB. I want to calculate the nonlinear system of equation using Newton Method. This nonlinear system of equation is taken from finite difference method. The system is Ay=F(y) ...
Ongky Denny Wijaya's user avatar
7 votes
3 answers
294 views

The problem is to find the longest sequence of numbers from 1 to 100 such that each number is either multiple or divisor or the previous, and with no repetition. For example, 50 25 5 35 7 63 21 is a ...
Zorm's user avatar
  • 71
0 votes
0 answers
33 views

I’m working with Manim Community and I would like to display dynamic values inside a Table. Currently, I use always_redraw to update the values of the cells, and it works with plain text. However, I ...
Gianmarco Ceccotti's user avatar
5 votes
2 answers
251 views

Okay, here's the problem I have. I'd like to do something like this: V(n,k) generates all n-sized permutations in which each permutations contains all digits from 0 to k-1 in lexicographic order. V(2,...
Reptorian's user avatar
4 votes
1 answer
142 views

I am want to create a number type, lets call it a sd32. The goal of this type to be stored like an i32, but when using it in arithmetic it should be treated as though it has 4 decimal places. The ...
Licorice Lizard's user avatar
0 votes
1 answer
67 views

I am studying a linear method for triangulation that uses Singular Value Decomposition (SVD) to estimate a 3D point P from multiple camera views. The method formulates a linear system of equations $AP=...
nuobei tang's user avatar
-2 votes
1 answer
234 views

I would like to solve this system of equation for X and Y : Do you know if their exist a mathematical solution to this system ? And how to solve it ? Or a numerical solution ? If yes, do you think ...
Camille's user avatar
  • 73
0 votes
1 answer
73 views

Over summer I've decided to explore how Sum of Squares optimization can be used with Lyapunov approaches. Currently I'm trying to find the region of attraction of the LQR's value function (when viewed ...
TheEmboldened's user avatar
0 votes
1 answer
55 views

Using qemu built from the last sources in a debian 12 machine : ./configure --target-list=hppa-softmmu --enable-numa --enable-slirp as stated in documentation [1] I installed a fresh HPUX 10.20 from ...
YfNk's user avatar
  • 104
4 votes
1 answer
180 views

Essentially what I'm trying to do is moving a point relative to two different scales. The reason is to edit values in a database of a 3d party application. So basically I want to relocate the red ...
IIlllIllIlll's user avatar
-4 votes
1 answer
144 views

I am looking to create a spreadsheet that does the following: I give it initial revenue, initial fixed expenses, initial growing expenses, growth rate for revenue and growth expenses, number of years, ...
Joshua Becker's user avatar
0 votes
2 answers
85 views

i am trying to use a countback from a certain date, and want it to read something like (100d, 10hrs, 10sec). the countback does this fine, except it reads as (-100d, -10hrs, -10sec). is there a way to ...
amouru's user avatar
  • 17
2 votes
1 answer
106 views

I am using gnuplot 6.0 patchlevel 3 on Manjaro Linux, with the MWE below reset set encoding utf8 set terminal pdfcairo size 8in,8in font "STIX Two Math, 24" enhanced set output "mwe-SO....
chandra's user avatar
  • 353

1
2 3 4 5
922