Diagonal means not vertical nor horizontal, or not perpendicular to something else.

learn more… | top users | synonyms

1
vote
1answer
46 views

rounded diagonal line css

Please tell me how to make such a diagonal line: shape: fiddle link + code: HTML: <div class="block"></div> CSS: .block { margin: 50px auto; width: 100px; height: ...
0
votes
0answers
6 views

find median excluding diagonal in R

I'm having trouble with R programming. From a matrix, how can I find the median of each row exclude the diagonal? Ex: matrix 4x4 0 1 2 3 1 0 1 2 2 1 0 1 3 2 1 0 I want to find the median of ...
0
votes
1answer
25 views

D3 diagonal using coordinates instead of objects

I am looking for a way to create a line like the one you get using d3.svg.diagonal but instead of using source and target objects, use coordinates. I tried fiddling with the projection function but no ...
0
votes
2answers
47 views

How to handle Diagonal Gestures in android?

I am facing a problem to calculate the diagonal swipe events in the android view. Can any one give me some logic to identify the Diagonal gestures. My Requirement is: Once the user swipe diagonally on ...
0
votes
6answers
73 views

How to replace non-diagonal elements in a matrix?

More specifically, I want all elements other than the diagonal ones (X_11, X_22, X_33,...,X_jj) to be zero. E.g. I want: [1 4 5 2 3 5 3 9 8] to be: [1 0 0 0 3 0 0 0 8] Is this ...
0
votes
1answer
38 views

Determining diagonals in a matrix

I have a square matrix, and , if I select two random elements in it, I am interested to determine two cases: If the two elements are situated on a diagonal parallel with the main diagonal If the two ...
-9
votes
1answer
42 views

Check that these two cells are diagonally to each other [closed]

I have a two dimensional array, now we enter index position of any two cell, how can I check that these two cells are diagonally to each other?
2
votes
3answers
70 views

Matrix to Diagonal Matrix [duplicate]

Let's say I have a matrix in Matlab like A = [1 2 3; 4 5 6; 7 8 9] and I would like to obtain a matrix of the form B = [1 0 0; 0 4 0; 0 0 7; 2 0 0; 0 5 0; 0 ...
-4
votes
2answers
82 views

Secondary diagonal of a matrix [closed]

I have a problem with my code in this simple thing. I try to print one 10x10 matrix with secondary diagonal having all ones and all other matrix values zeroes. My code is in C#. 0 0 0 0 0 0 0 0 0 1 0 ...
0
votes
1answer
228 views

Create a pseudo diagonal mask with css and scroll animation

I am struggling to create an effect that as the scroll is done, a diagonal will appear and reveal the contents inside it, but giving the idea that the content is flowing normally ... In the image ...
2
votes
1answer
37 views

Extract and set thick diagonal of numpy array

I have a simple numpy question. How can I extract and consequently set a diagonal having a "thickness" equal to width with a constant value? I know the fill_diagonal function which fills the main ...
0
votes
0answers
217 views

Moving fullscreen background images with jmpress.js?

http://jmpressjs.github.io/jmpress.js/ so far is the best/easiest way for me to do diagonal scrolling of content (outside and inside the viewport). Every content in divs automatically is centered. Is ...
0
votes
1answer
50 views

How do I turn the diagonal line to the other side?

I have this code but it's printing the diagonal like this...I wanted to go from top right to bottom left, any idea how to turn it? * * * * * Code: class Diagonal { public static ...
4
votes
2answers
143 views

Neighbor index computation for diagonally flattened matrix

I have a 2D matrix stored in a flat buffer along diagonals. For example a 4x4 matrix would have its indexes scattered like so: 0 2 5 9 1 4 8 12 3 7 11 14 6 10 13 15 With this ...
1
vote
2answers
57 views

Trying to get a diagonal sum

Trying to get the sum diagonally in #7 of the lists that #6 creates. So say the list was this [[2,3,1],[1,1,1],[5,6,4]] the sum would be 2+1+4 #6 def randomlists(s): b=s list1 = [] while ...
6
votes
3answers
166 views

Create diagonal border of a cell

I wonder if it is even possible creating a table with diagonal border line using css or jquery just like below: Any ideas will be appreciated.
0
votes
1answer
62 views

Replace the diagonal of matrix

I am interesting to replace the diagonal of matrix D to 1,2,3,4. This is matrix D: A=[1,2,3,4,2,3,4,5; 3,4,5,6,4,5,6,7]; D=[A;A]; D=[D D]; % size of matrix [4x16] %
0
votes
2answers
84 views

Make line became spatial diagonal of a cube in Three.js

I want to create a cube and a line, and make this line became the spatial diagonal of this cube. Using trigonometry, I know that the angle formed by a line with no rotation and the spatial diagonal ...
0
votes
2answers
34 views

Find the data set which fullfill certain conditions

I have the data as shown in below: for a=1:2 for b=1:2 for c=1:2 for d=1:2 m{a,b}{c,d}=zeros(3,3); end end end end m{1,1}{1,1}=[6 ...
5
votes
2answers
97 views

How to do this diagonal matrix in matlab?

can you help me with this type of diagonal matrix? | 1| | 1 | | 1 | I=| 1 | | 1 | | 1 | |1 | I don't know how to do it in Matlab.
1
vote
1answer
42 views

optim() and solving a diagonal matrix (fitting argument error) in R

I'm trying to find the solution in the following problem: Arbitrary values for reproducability: AZ2k <- seq(1:14) noAZ2k <- matrix(seq(1:25), 14, 50) par <- rep(0.02 , 50) vw <- ...
1
vote
2answers
104 views

Efficient way to make a multi-diagonal matrix

Is there an efficient way to produce square multi-diagonal matricies such as these: [[1,2,3], [2,1,2], [3,2,1]] [[1,2,3,4,5], [2,1,2,3,4], [3,2,1,2,3], [4,3,2,1,2], [5,4,3,2,1]] My efforts ...
0
votes
0answers
266 views

Java Connect4 diagonal win check

I am working on a connect4 game, all is working pretty good except the diagonal check, here's the code (diagonal Right to Left): private boolean verificarDiagonalEsq(int selecSeq, int selecLinhas, ...
2
votes
2answers
350 views

Simultaneously diagonalize matrices with numpy

I have a m × n × n numpy.ndarray of m simultaneously diagonalizable square matrices and would like to use numpy to obtain their simultaneous eigenvalues. For example, if I had from numpy import ...
0
votes
1answer
110 views

Angular movement in pygame

I've made a function which allowes me to move object diagonal: if(myX > targetX): dx = myX - targetX else: dx = targetX - myX if(myY > targetY): dy = myY - ...
0
votes
1answer
22 views

Why does diag exhibit inconsistent behavior in octave

Can someone explain what's going on here? octave:1> t = eye(3) t = Diagonal Matrix 1 0 0 0 1 0 0 0 1 octave:2> diag(t(3,:)) ans = Diagonal Matrix 0 0 0 0 0 ...
2
votes
2answers
300 views

Triangular css button image

I'm trying to make a splash page on my website with 2 large buttons, each a right angled triangle, and both join by the longest side to create a square. Basically I'm looking to find out how to make ...
1
vote
2answers
254 views

CSS3 1px diagonal lines gradient

I want to create a diagonal pattern using CSS3, something like this: So 1px dark diagonal line, 1px light diagonal line and so on... This is what i came up with, i feel like i'm close but ...
0
votes
8answers
377 views

How to put a diagonal line over a textbox in CSS?

Sorry about not having an example, but basically I want to give an effect of having a text box crossed out, like being cancelled, etc. Anyone got any ideas?
5
votes
3answers
447 views

how to create dynamic diagonal line from left-bottom to right-top corner

I've created a simple layout where I have three divs which interact. One is the logo in the middle of the screen and the other are two blocks which with jquery are moved out of the screen. I used the ...
3
votes
2answers
242 views

Assiging elements into the lower triangular part of a matrix

I'm creating a diagonal matrix in MATLAB using eye(3). How can I assign the number "2" only to the elements under the main diagonal?
0
votes
0answers
99 views

number of paths from corner to corner in a matrix including diagonal move

I am having difficulty solving this one and haven't found a solution to this problem that includes diagonal moves. In short- how many paths are there from top left corner to bottom right in a NxM ...
1
vote
0answers
20 views

Populate matrix with ones according to certain function values

I would like to populate a 10x10 matrix with ones at certain positions. For example eye(10) yields a matrix with ones along the diagonal, corresponding to a 45 degree vector if you will. Is it ...
1
vote
2answers
420 views

Java 2D array diagonals for game

To clarify I only wanted one or two for loops to help me on my way, preferably in the same style as I had used in the vertical :) I'm making a game using a 2D array, and I need a check that tests if ...
2
votes
3answers
375 views

R or MATLAB: permute a large sparse matrix into a block diagonal matrix

I have a large sparse matrix, and I want to permute its rows or columns to turn the original matrix into a block diagonal matrix. Anyone knows which functions in R or MATLAB can do this? Thanks a lot. ...
0
votes
0answers
14 views

2div(left an image;right a text) in the same div or section,with a diagonal in the middle(like css shape)

2div(left an image;right a text) in the same div or section,with a diagonal in the middle(like css shape) the result will be this: http://pbrd.co/WnCI2p the black background,it's from the image,not ...
4
votes
1answer
202 views

Control if diagonal swipe is for horizontal UIScrollView or nested vertical UIScrollView?

Short How can I control wether or not a swipe on a UIScrollView has made a big enough Y delta to be considered a vertical swipe and let it be handled by a nested UIScrollView (UIWebView)? Long I ...
1
vote
1answer
689 views

Calculation of sides and area of right-angled trapezoid [closed]

I have to calculate sides and area of right-angled trapezoid if I know only diagonals. The task is: You have a right-angled trapezoid ABCD with right angle at the point B. You know that diagonal ...
2
votes
0answers
111 views

UIGestureRecognizer in master/detail for diagonal movement interfering with sub view

I have a master detail template application with a specific view that needs to have gestures disabled (specifically right swipe since that fires up the table view under the UISplitViewController). I ...
1
vote
2answers
268 views

How can I go through a 2D Array via the secondary diagonal?

As I said, I would like to "scroll" through a Multi Dimensional array via the secondary diagonal, my desired input to be: (Case a) [It can be in either C++ or Java, it doesn't matter] NOTE+EDIT: The ...
4
votes
1answer
158 views

How can I get the real size of the (lcd) display diagonal, i.e. if a it is a 17 inch or 19 inch or other?

This is useful for me because I have to map objects with a correct dimension on screen; if I'm using a 19" lcd with 1280x1024 resolution and a normal 96dpi setting then in order to map a correct ...
1
vote
1answer
122 views

Diag Function to create a matrix

How would I go about creating the matrix [1 2 0 0 0; -1 1 2 0 0; 0 -1 1 2 0; 0 0 -1 1 2; 0 0 0 -1 1] using the diag command in MatLab?
0
votes
1answer
121 views

Given a Matrix 3x3 How can I traverse through the longest diagonal only?

Given a Matrix 3x3 How can I traverse through the longest diagonal only? Take this example: 1 2 3 4 5 6 7 8 9 I want to traverse through 1,5,9
4
votes
1answer
915 views

Extracting off-diagonal slice of large matrix

I've got a large nxn matrix and would like to take off-diagonal slices of varying sizes. For example: 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 1 2 3 4 5 6 I'd like an R function ...
4
votes
3answers
399 views

how to delete the diagonal elements of a matrix in MATLAB?

I need a code to omit the diagonal elements of a matrix for example if A = [1 2 3; 1 2 3; 1 2 3]; the the output come: [2 3; 1 3; 1 2]; how can i do it simply ( i know a long one but i need ...
4
votes
2answers
196 views

NumPy k-th diagonal indices

I'd like to do arithmetics with k-th diagonal of a numpy.array. I need those indices. For example, something like: >>> a = numpy.eye(2) >>> a[numpy.diag_indices(a, k=-1)] = 5 ...
0
votes
1answer
355 views

looping a diagonal animation

I'm trying to get my spaceship to fly left and down diagonally but I can't get it to reset to do the same loop again, any help would be cool. $(document).ready(function() { ...
1
vote
3answers
591 views

How to create a diagonal sparse matrix in SciPy

I am trying to create a sparse matrix which has a 2D pattern run down the diagonal. This is probably easiest to explain with a quick example. Say my pattern is: [1,0,2,0,1]... I want to create a ...
0
votes
2answers
150 views

hoverstate on diagonal jquery grid

I'm trying to create this grid: I've made some html generated with jQuery and rotated that with jQuery.rotate. Now my div's are overlapping each other causing a problem to my hover state. ...
2
votes
2answers
466 views

Extract sub- and superdiagonal of a matrix in R

As the title implies, how does one extract the sub- and superdiagonal of a matrix?

1 2