Tagged Questions
The inverse tag has no wiki summary.
34
votes
3answers
10k views
When to use inverse=false on NHibernate / Hibernate OneToMany relationships?
I have been trying to get to grips with Hibernate's inverse attribute, and it seems to be just one of those things that is conceptually difficult.
The gist that I get is that when you have a parent ...
31
votes
7answers
12k views
Python reverse / inverse a mapping
Given a dictionary like so:
map = { 'a': 1, 'b':2 }
How can one invert this map to get:
inv_map = { 1: 'a', 2: 'b' }
5
votes
3answers
133 views
det of a matrix returns 0 in matlab
I have been give a very large matrix (I cannot change the values of the matrix) and I need to calculate the inverse of a (covariance) matrix.
Sometimes I get the error saying
Matrix is close to ...
5
votes
4answers
3k views
Plot inverse colors in Matlab?
I'm plotting on top of an image in Matlab. Sometimes, I can't see what's being plotted because the color of the image underneath is too close to the color of the image at the same location. I could ...
4
votes
3answers
644 views
What's the most concise way to get the inverse of a Java boolean value?
If you have a boolean variable:
boolean myBool = true;
I could get the inverse of this with an if/else clause:
if (myBool == true)
myBool = false;
else
myBool = true;
Is there a more concise ...
4
votes
1answer
1k views
Algorithm for computing the inverse of a polynomial
I'm looking for an algorithm (or code) to help me compute the inverse a polynomial, I need it for implementing NTRUEncrypt. An algorithm that is easily understandable is what I prefer, there are ...
4
votes
2answers
1k views
Reverse Spectrogram A La Aphex Twin in MATLAB
I'm trying to convert an image into an audio signal in MATLAB by treating it as a spectrogram as in Aphex Twin's song on Windowlicker. Unfortunately, I'm having trouble getting a result.
Here it ...
3
votes
2answers
71 views
Blending two functions, where one is inverse
Let me first explain the idea. The actual math question is below the screenshots.
For musical purpose I am building a groove algorithm where event positions are translated by a mathematical function ...
3
votes
2answers
186 views
Absolute angle between lines using inverse cosine
I want to calculate the angle between two lines formed by three points(one of the points is the point of intersection of the two lines) using inverse cosine function as follows:
CGFloat a = ...
3
votes
2answers
2k views
Rails: :inverse_of and Association extensions
I have the following set-up
class Player < ActiveRecord::Base
has_many :cards, :inverse_of => :player do
def in_hand
find_all_by_location('hand')
end
end
end
class Card < ...
3
votes
3answers
3k views
Computing the inverse of a matrix using lapack in C
I would like to be able to compute the inverse of a general NxN matrix in C/C++ using lapack.
My understanding is that the way to do an inversion in lapack is by using the dgetri function, however, ...
3
votes
4answers
759 views
Using diff to find the portions of many files that are the same? (bizzaro-diff, or inverse-diff)
Bizzaro-Diff!!!
Is there a away to do a bizzaro/inverse-diff that only displays the portions of a group of files that are the same? (I.E. way more than three files)
Odd question, I know...but I'm ...
2
votes
4answers
165 views
PersistenceSpecification and inverse
I've already posted this in the Fluent NH group a long time ago, but didn't get any answers until today. SO, here's the problem: I've got a one-to-many relationship defined and the one side has the ...
2
votes
2answers
114 views
Invert keys and values of the original dictionary
For example, I call this function by passing a dictionary as parameter:
>>> inv_map({'a':1, 'b':2, 'c':3, 'd':2})
{1: ['a'], 2: ['b', 'd'], 3: ['c']}
>>> inv_map({'a':3, 'b':3, ...
2
votes
2answers
125 views
Do I Have to Manually Set a Core Data Object's Inverse Relationship in Code on the iPhone
I am new to core data so please excuse me if I get some of the terms wrong.
I have several objects in my xcdatamodel file. They are all inter connected with relationships and inverse relationships. ...
2
votes
1answer
217 views
Inverse sqrt for fixed point
I am looking for the best inverse square root algorithm for fixed point 16.16 numbers. The code below is what I have so far(but basically it takes the square root and divides by the original number, ...
2
votes
2answers
354 views
Core Data Inverse Relationship Not Being Set
I've got two Entities that I'll call A and B. They are configured with To-Many relationships in both directions, so A.myBs and B.myAs are both NSSets.
Here is my bizarre problem.
When I add ...
2
votes
2answers
471 views
2
votes
1answer
2k views
inverse=true in JPA annotations
In my application I use JPA 2.0 with hibernate as the persistence provider. I have a OneToMany relationship between two entities (using a @JoinColumn and not @JoinTable). I wanted to know how could I ...
2
votes
3answers
584 views
Matrix Inverse Code(c, c++, fortran or tksolver)
I need a code to determine the inverse of an nxn matrix A using row operations.
I am having a ridiculous time writing this code. Anything helps, I am a grad student and havent taken a programming ...
2
votes
4answers
109 views
How to count inverse with for in php?
PROBLEM RESOLVED
My Problem: I want to count inverse in the for loop.
This is the opposite of what I want to do:
for($i=1;$i<=10;$i++){
echo $i;
}
If I put $i-- doesn't works (my server ...
2
votes
4answers
240 views
RegEx to reverse order of list?
Is there a singular regular expression that can be used in, say, a text editor's search/replace dialog to reverse the order of the items in a list?
For instance, take this list:
First item
Second ...
1
vote
0answers
114 views
Second Self-To-Self relationship in Entity Framework
Assume we have a domain class
public class Incident
{
[Key]
public virtual int IncidentId { get; set; }
[Display(Name = "Parent Incident")]
public virtual Incident ParentIncident { ...
1
vote
2answers
71 views
Writing a function in javascript that is the inverse of another
I'm trying to write a function that is the inverse of the function below.
So that I can get the output from the function foo and generate it's input parameter.
I'm not entirely sure if it's ...
1
vote
1answer
186 views
notepad++ Inverse Regex replace (all but string)
I essentially wish to match every line that DOES NOT contain this string "Hello"
Example:
sdfsdoifdoskf
fdgokfdghodfkg
hello
fdojgohdfgjkdfg
gfobjobhkdfokgdfg
dofjkdsf hello dfgkdfogdfg
...
1
vote
3answers
70 views
Is there a regex to match a string that contains A but does not contain B
My problem is that i want to check the browserstring with pure regex.
Mozilla/5.0 (Linux; U; Android 3.0; en-us; Xoom Build/HRI39) AppleWebKit/534.13 (KHTML, like Gecko) Version/4.0 Safari/534.13
...
1
vote
5answers
108 views
Java modular inverse
I'm doing some error correction in Java and to cut a long story short;
Under mod 11:
-4 mod 11 = 7
This I've confirmed by using Google's calculator and a couple of online modulo calculators, but I ...
1
vote
0answers
81 views
nhibernate bidirectional mapping
Given the object model, mapping, and code below, I want to achieve the following:
On SAVE
of new parent Party objects, I'd like for the parent to persist child PartyNames as well. SO ideally I can ...
1
vote
1answer
60 views
Is it possible to have a “stacking-cloud” div layout?
I am trying to create the following layout with divs (every of them have a random fixed width and height):
http://i.stack.imgur.com/LJADe.png
So I was trying with the float parameter but it always ...
1
vote
2answers
221 views
Hibernate Inverse attribute
I am creating a one-to-many relationship. so, i have a parent and a child. The cascade attribute is set to all.
I was wondering, if we consider the following piece of code:
Parent p = (Parent) ...
1
vote
3answers
95 views
Batch - Inverse/Negative FOR loops?
I'm trying to concatenate many files into two individual files.
The first file will be a concatenation of all other files with "bob" in the filename. The second file will be a concatenation of all ...
1
vote
0answers
197 views
Nhibernate one to many delete not working
Hi I have a one to many ComplianceSet -> ComplianceItem. ComplianceItem has a one to many ComplianceItem -> ComplianceItemInstance.
I have
ComplianceSet
HasMany(x => ...
1
vote
3answers
443 views
Polynomial inverse
I have a polynomial of the fifth order:
y = ax5 + bx4 + cx3 + dx2 + ex + f
The coefficients a-f are known and I need to calculate x for a given y. I could probably use the Newton-Raphson algorithm ...
1
vote
1answer
380 views
How to do inverse real to real FFT in FFTW library
I'm trying to do some filtering with FFT. I'm using r2r_1d plan and I have no idea how to do the inverse transform...
void PerformFiltering(double* data, int n)
{
/* FFT ...
1
vote
2answers
2k views
What is the difference between cascade & inverse in hibernate, what is the use of them?
how to use cascade and inverse in hibernate,
what is the procedure/tag to define them?
is they relate to each other?
how they are useful in hibernate...
1
vote
2answers
75 views
How do I achieve the effect of two to-many relationships to the same entity from one entity?
I am having a hard time wrapping my head around data models. Let me start with showing how I would declare the class if I just had to have in-memory objects.
@interface PlayerState {
NSSet /* of ...
1
vote
1answer
571 views
hibernate bidirectional one-to-many inserts duplicates
I'm having issues with a parent-child relationship here. When I persist from the collection side (child side) I get 2 new children instead of one.
Here is are the hibernate mappings:
<set ...
1
vote
5answers
1k views
c++ large matrix inversion methods
Hi I've been doing some research about matrix inversion (linear algebra) and I wanted to use c++ template programming for the algorithm , what i found out is that there are number of methods like: ...
1
vote
1answer
566 views
NTRU Pseudo-code for computing Polynomial Inverses
I was wondering if anyone could tell me how to implement line 45 of the following pseudo-code.
Require: the polynomial to invert a(x), N, and q.
1: k = 0
2: b = 1
3: c = 0
4: f = a
5: g = 0 {Steps ...
1
vote
1answer
221 views
Multiplying by inverse matrices?
If I have a matrix which is a combination of World*View*Projection and I multiply it by the inverse of the projection does it yield the World*View matrix or something else? If not then how can I ...
1
vote
4answers
2k views
How to get the inverse of a regular expression?
Let's say I have a regular expression that works correctly to find all of the URLs in a text file:
(http://)([a-zA-Z0-9\/\.])*
If what I want is not the URLs but the inverse - all other text except ...
1
vote
4answers
1k views
Generic Java Framework to Manage Bidirectional Associations and Inverse Updates
I've been looking for a generic way to deal with bidirectional associations and a way to handle the inverse updates in manual written Java code.
For those who don't know what I'm talking about, here ...
0
votes
0answers
31 views
Symfony2: persist many-to-many relation from inverse side with standard crud
I am wondering about the default behavior of generated many-to-many relations: While the relation is stored in the association table correctly when persisting the owning side of the relation, the ...
0
votes
1answer
22 views
Difference between Hibernate Cascade and Inverse properties [closed]
Possible Duplicate:
What is the difference between cascade & inverse in hibernate, what is the use of them?
What is Difference between Hibernate Cascade and Inverse properties?
0
votes
1answer
57 views
jQuery a solution between children() and find(): anything than looks like closest()?
Based on the different answers received, the only solution using jQuery without implementing our own selector function is a basic selector with ":first" or followed by ".eq(0)" for jQuery.
I wanted ...
0
votes
3answers
77 views
Creating java regex to get href link
Sorry if this has been asked before, but I couldn't find any answers on the web. I'm having a hard time figuring out the inverse to this regex:
"\"[^>]*\">"
I want to use replaceAll to replace ...
0
votes
1answer
32 views
Inverse Kinematic ACos error QNAN, INAN
Hey I am getting a return value of "Not a Number" from the following function:
void Spider::setAngles(double x,double y, double l1, double l2){
double theta1, theta2;
...
0
votes
0answers
56 views
Matrix cofactor calculation
I was trying to solve an inverse matrix for a 4 X 4 matrix (later turn into an n X n). So I tried find the cofactors of the matrix.
My algorithm is as follows:
suppose a matrix : 1 2 3 4
...
0
votes
1answer
38 views
Matrices (3D & 2D)
I have a 3D matrix, M(4,4,9), different values of current and voltage for 9 different conditions.
Now I have to perform M\B, where B is a 4X1 matrix...and I want to do this 9 times to get a (4,1,9) ...
0
votes
1answer
78 views
How to revert animation with jQuery?
I'm wondering how to revert this animation using jQuery, look this page:
http://bksn.mx/TAC/
The correct way is when you click "Equipo", it shows smooth animation and click this again, it reverts ...