Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
4answers
743 views

What is priority inversion?

I've heard the phrase 'priority inversion' in reference to development of operating systems. What exactly is priority inversion? What is the problem it's meant to solve, and how does it solve it?
4
votes
1answer
392 views

iPad programming, any way to invert color programmatically?

You know how the iPad can invert colors? For the app I'm working on we wanted to have a button that would invert the colors for one of the views the same way. Does the sdk have any kind of support ...
4
votes
6answers
455 views

How do I turn any regex into an complement of itself without complex hand editing?

The following are pseudo examples, not real regex, but still an example of what I mean: .* (anything) -.* (NOT anything) [A-Z] (Any letter A to Z, caps only) -[A-Z] (NOT any letter A to Z, ...
4
votes
2answers
488 views

Difference between “Inversion of Control”, “Dependency inversion” and “Decoupling”

I'm reading theory about dependency inversion and decoupling and I can't see the difference between the two. Dependency inversion talks about decoupling functional components so that higher level ...
3
votes
3answers
174 views

Bitwise NOT on hexadecimal numbers in Perl

I have a long string containing hexadecimal numbers. What's the best way to replace each number with its one's complement (also in hex)? That is, if I have $string = "d3e5d1b8 66300f40 16010f2e ...
3
votes
1answer
346 views

SQL select inverted tree

Hello i have tree structure in sql. Logics is standard: SomeID, ParentID, other fields. I have select procedure, which selects data like this: 1. 1.1 1.1.1 and so on. How to write the select ...
1
vote
3answers
216 views

Performance question: Inverting an array of pointers in-place vs array of values

The background for asking this question is that I am solving a linearized equation system (Ax=b), where A is a matrix (typically of dimension less than 100x100) and x and b are vectors. I am using a ...
1
vote
1answer
305 views

Invert the 1bbp color under a rectangle

I am working with GDI+, the image I am working with is a 1bbp image. What i would like to do is draw a rectangle on the image and everything under that rectangle will be inverted (white pixels will ...
1
vote
2answers
259 views

Possible ways to calculate X = A - inv(B) * Y * inv(B) and X = Y + A' * inv(B) * A

I have two problems. I have to calculate two equations: X = A - inv(B) * Y * inv(B) and X = Y + A' * inv(B) * A where, A, B and Y are known p*p matrices (p can be small or large, depends the ...
1
vote
7answers
931 views

Matrix implementation benchmarks, should I whip myself?

I'm trying to find out some matrix multiplication/inversion benchmarks online. My C++ implementation can currently invert a 100 x 100 matrix in 38 seconds, but compared to this benchmark I found, my ...
0
votes
2answers
50 views

Huh? Where do I put my service so that my Controller and Service aren't impossible to test?

Am I correct to think that I have to create my controller by passing it an instance of my context AND my Service to make it testable? For example: new Controller(mycontext,myservice) I'm thinking ...
0
votes
1answer
37 views

How can I reverse the colors of an image with the tool ColorMatrix?

What values do I have to put in the Matrix? Dim clMatriz As Imaging.ColorMatrix = New Imaging.ColorMatrix(New Single()() _ {New Single() {¿?, 0, 0, 0, 0}, _ New Single() {0, ¿?, 0, 0, 0}, _ New ...
0
votes
2answers
202 views

select the inverse of sql result as a string list

having a sql e.g. something like the following resulting in some rows with one value. I search a different sql than SELECT * FROM some_sql which results in one row with comma separated values. WITH ...
0
votes
1answer
88 views

inversion pairs in an array - application

I came across an algorithmic problem to find out the number of inversion pairs in an array in O(nlogn) time. I got the solution to this. But, my question is that what is the real-life application of ...
0
votes
1answer
239 views

Inversion for insertion sort!

This a question I found in the Wikipedia site (I want to learn sort algorithms very well). Anyway, this is a question - could you explain to me how I can show it? Exercise: Show that Algorithm ...
0
votes
3answers
80 views

question about inversion

Hi I have read something in the site that inversion means if i<j then A[i]>A[j] and it has some exercises about this , I have a lot of questions but I want to ask just one of them at first and ...
0
votes
1answer
96 views

Text Invertion Android

Hi Anybody knows how to write upside down text of edit text in Android thanks /minhaz
0
votes
1answer
314 views

Is there a standard library implementation of MPI inverse matrix calculation problem?

Is MPI implementation of matrix inversion a standard library routine or good MPI implementation critically depends on your setup(software/hardware) so have to be coded by yourself.
0
votes
1answer
493 views

Which one is faster / more stable: inverting matrix or solving three systems of linear equations with multiple right hand sides?

I have two equations I'm solving on each recursive round: X = A - inv(B) * Y * inv(B), X = X + A' * inv(B) * A, I solve the problem this way: C = inv(B)Y <=> BC = Y, solve C. D = Cinv(B) <=> ...
0
votes
3answers
2k views

Flex: Inverting LinearAxis values

I have a line chart that is updated every so and so seconds, similar to the one you see in Windows' Task Manager. The chart goes right-to-left, with the most recent data on the right, and going ...
-1
votes
1answer
811 views

Octave inverse matrix and integer result

I would like to get an invertible matrix in Octave but as integers matrix, so: x = [9,15;19,2]; inv(x) and the result is: [-0.0074906, 0.0561798; 0.0711610, -0.0337079] but I would like to get ...