Questions tagged [symmetry]

is used in its general meaning, from symmetric matrices to Git. As a result you should probably use at least one more tag to describe your case better.

78 questions
0
votes
0 answers

text box datas are not in symmetry

I created a list of dynamic text boxes in my vb.net program then add a row of data table in each text box they are displaying like this:- M 20000 s 4000 j 3000 M 3500 letter M is taking more pixels then s and j how should I show it…
0
votes
1 answer

Appropriate equation to fit this 2-Dimensional non-linear data

To provide a brief background, I am working on a project to control the velocity of a bi-stable solenoid and I am trying to create a state-space representation of the system. One of the variables in my state-space is F, the force on the armature of…
Double01
  • 1
  • 1
0
votes
2 answers

Symmetric Relation Recursive SML

Define a recursive predicate in ML isRelationSymmetric that accepts a relation r (represented as a list of tuples) and returns true if r is symmetric and false otherwise. Here is what I have so far. fun isRelationSymmetric([]) = false |…
jwolf
  • 33
  • 3
0
votes
1 answer

Halcon - Region Symmetry

Is there a way to detect if a region is symmetric or not on its vertical center axis? I have this region: The left side is correct, the right side has this hole.. I need to detect it and would like to do it with symmetry. I was not able to find any…
sharkyenergy
  • 3,842
  • 10
  • 46
  • 97
0
votes
1 answer

How to determine approximate symmetry from a list of vectors?

Hi everybody and thanks for help ! I'm trying to find the fastest algorithm to determine symmetry from a list of vector. Each vector are 3D Vector (maya.api.OpenMaya.MVector, so it have x, y and z attributes as well) and they all are part of the…
Sneyek
  • 33
  • 6
0
votes
0 answers

split a scene symmetric

Is there a way to split it visually in two parts on X,Y or Z direction in a threejs environment. It should describe the mechanical symmetry, where only on of two symmetrical halves will be calculated in the further process. For Explanation maybe the…
ChristianNRW
  • 542
  • 3
  • 8
  • 23
0
votes
2 answers

Identify symmetry of a matrix [ ] [ ]

I'm trying to find if a matrix [][] is symmetric in different orientations (horitzonzal/ vertical or both), and found this tutorial https://www.geeksforgeeks.org/check-horizontal-vertical-symmetry-binary-matrix/ and tried it with my matrixes, but…
lydiaP
  • 123
  • 1
  • 13
0
votes
2 answers

Armadillo 2D FFTW real to complex DFT Hermetian symmetry

I'm trying to perform a 2d Fourier transform of some real data. I'm using the FFTW library to do this as it's significantly faster than Armadillo's library. Given a simple (4x4) start matrix: AAA: 0 0 0 0 0 1.0000 …
Brani
  • 25
  • 3
0
votes
2 answers

Mirror object along vertical axis in Unity?

When in Unity I want to symmetrically mirror a transform along the x axis, for many shapes this works fine: reflection.localRotation = new Quaternion( original.localRotation.x * -1f, original.localRotation.y, …
Philipp Lenssen
  • 8,818
  • 13
  • 56
  • 77
0
votes
2 answers

How do I invert an integer around a selected number point

I want to essentially be able to have a function swap where I can enter 2 arguments. The first would be the central point, the point of inversion so to speak, while the second would be the number I want to find the opposite of, with respect to the…
0
votes
2 answers

create a symmetry of an image

Is it possible to obtain the bilateral symmetry of an binary image? An example of the type of result that I search: x=[true false false;false true false;false true false;false true false;false false true;false false true;false false true;false false…
Mac.
  • 303
  • 1
  • 12
0
votes
1 answer

How to create an image of a symmetric dot pattern in MATLAB/Python?

Goals: Make images of symmetric and asymmetric dot patterns. Symmetric images with vertical mirror symmetry (left and right sides mirror) Asymmetric images made from the symmetric images (shuffling left and right sides) I want to make a ton of…
0
votes
3 answers

itertools remove equivalent elements

I'm generating all vectors respecting some symmetry groups using itertools in python. Basically all is just permutation of x,y,z axis and sign. I'm just not sure what is the best way to ensure that equivalent vectors are not duplicated E.g. 0 = -0…
Prokop Hapala
  • 2,424
  • 2
  • 30
  • 59
0
votes
1 answer

Symmetry of autocovariance matrix by multiplying feature matrix with its transpose

There is a mathematical theorem stating that a matrix A multiplied with its transpose yields a symmetric, positive definite matrix (thus leading to positive eigenvalues). Why does the symmetry test fails here for medium-size-random matrices? It…
dopexxx
  • 2,298
  • 19
  • 30
0
votes
0 answers

Python: distribution of shortest paths is irregular with regular grid

In a regular NxN network, I want to color code the nodes based on the number of shortest paths passing through them. This is known in literature as the Stress Centrality (SC). To do this, I use the nx.all_shortest_paths() function, which computes…
FaCoffee
  • 7,609
  • 28
  • 99
  • 174