-
### Description of the feature
Export of Mesh and of the 2D geometry as scalable vector graphic (svg).
### Steps for implementing the feature
_No response_
### Useful links and references
_No res…
-
Hi, I not sure if this is a bug or my wrong usage of xgcm.
I try to run the example: https://github.com/pangeo-gallery/physical-oceanography/blob/master/04_eccov4.ipynb
Fails at `diff_2d_vector`:
…
-
This code ([Godbolt link](https://zig.godbolt.org/z/4j538eG1P)):
```zig
export fn clz(x: @Vector(2, u64)) @Vector(2, u64) {
return @clz(x);
}
```
Gives me this emit for the Apple M3:
…
-
https://stackoverflow.com/questions/2828648/how-to-pass-a-multidimensional-array-to-a-function-in-c-and-c/67814330#67814330
-
In progress...
-
```go
a := [[a11, a12, ..., a1N], [a21, a22, ..., a2N], ..., [aM1, aM2, ..., aMN]]
```
can be:
```go
a := [a11, a12, ..., a1N; a21, a22, ..., a2N; ...; aM1, aM2, ..., aMN]
```
or:
```…
-
I'm trying to implement [all pairs shortest path](https://en.wikipedia.org/wiki/Floyd–Warshall_algorithm) using GraphIt and I'm having trouble.
I'd like to have a 2D vector `distance` that for any …
-
Write a c++ class to create a Vector2D, with ll it's operations
-
In the Equation Library, it may happen that we have a vector containing two or more calculated values having different units, for instance:
[ λ=0.00000 00166 67 C/m Er=5 991.70119 159 N/C ]
and if…
-
When creating an instance of `Function`, the user should be able to indicate the evaluation style. The main evaluation styles are the following:
```python
# NUMPY or UNIVERSAL or SEPARATE or MULTI…