The shortest distance between two points. Or, a row of characters in text output.
0
votes
1answer
9 views
How to integrate line and area google chart in same chart
I need to make chart which have use same data and display line chart and area chart.How to
composite line and area chart.
This is the data
['Year', 'Sales', 'Expenses','Total'],
...
0
votes
5answers
35 views
Print text between two strings on the same line
I've been searching for a ling time, and have not been able to find a working answer for my problem.
I have a line from an HTML file extracted with sed '162!d' skinlist.html, which contains the text
...
0
votes
2answers
25 views
Want to make a line, using a handle to a figure in MATLAB
I have a problem, where I already have a handle to a figure created, and I want to somehow now draw a line, given that handle. For example, I have:
f1 = figure(1);
a1 = gca;
For commands like plot ...
1
vote
0answers
28 views
OpenCV - can't draw long line
I use OpenCV 2.4.5. I want to draw the lines between matched points of two images. The code is:
const int &w=image1.cols;
for (size_t i = 0; i<good_matches.size(); i++ )
{
//-- Get the ...
-6
votes
0answers
38 views
Line plot with ggplot2 [closed]
I was asked to do a line plot with ggplot2
i have a csv file, separated with ";"
Threshold MCC
100 0
99 0
98 0
97 0
96 0.4082312693
95 ...
-1
votes
0answers
32 views
How to draw a path using touch in unity 3d [closed]
i want to draw a line with line LineRenderer using finger position in c#.
For eg: I need to define the path of a floating object seen on the screen. I draw the path with my finger starting from one ...
5
votes
8answers
182 views
Process very large (>20GB) text file line by line
I have a number of very large text files which I need to process, the largest being about 60GB.
Each line has 54 characters in seven fields and I want to remove the last three characters from each ...
0
votes
0answers
10 views
parametric rotation of line
How can I rotate a line if the given data are:
line: Ax+By = C
point: P(x,y)
angle: alpha
-2
votes
1answer
38 views
Draw a line in JAVA with Pattern - Beginner
I want to draw a line in java. I will use these draws with making Triangles. I can do this :
1***
11**
111*
1111
and i need to do this:
1***
*1**
**1*
***1
Ive done a lot of work today and my ...
1
vote
0answers
15 views
Line number of xinclude while unmarshalling using jaxb
I found this question on SO. I shows how to get the line numbers of individual xml elements while unmarshalling with JAXB. I extended this example being able to use xinclude. Unfortunately, I'm not ...
0
votes
2answers
17 views
Deleting a line from a text file (python)
how to you delete a specific line from a text file using readlines()
like:
f_open = open("textfile.txt", "r")
lines = f_open.readlines()
how do you use lines to choose a line in textfile.txt and ...
0
votes
2answers
48 views
How do you replace a line of text in a text file (python) [duplicate]
i have a text file that looks like this:
unknown
unknown
etc.
How do you choose a specific line in the text file, delete that line than replace it with a specific string.
0
votes
1answer
59 views
arrow of line chart highcharts
I need to draw arrow of my line chart but i don't know well, here there are my code that make arrow http://jsfiddle.net/VQyVs/ I have probleme with serie 2
var lineSeries = ...
0
votes
1answer
30 views
How to insert 3 divs on the same line
I try to insert 2 divs on the same line and isn't woring.The last div is always placed on the bottom of the page.
Here's the CSS:
#content1
{
background-image:url(html/images/content1.png);
...
0
votes
1answer
37 views
Matlab 3D plot plotting weird lines?
I have 3 arrays X, Y, Z that look something like this:
x = [1, 1, 1, 2, 2, 2, 3, 3, 3]
y = [1, 2, 3, 1, 2, 3, 1, 2, 3]
z = [1, 2, 3, 2, 4, 6, 3, 6, 9]
Then I am plotting these points with ...
0
votes
0answers
25 views
Microsoft Access Drawing Line on Listboxes
I have a problem for drawing line between listbox items. I have 3 ListBoxes; one of them has three columns and other two have one column. What I want is to draw line between items inside these boxes ...
0
votes
1answer
23 views
Draw a corner in WPF
I am trying to draw a corner in WPF inside a grid element using 2 line elements.
I am trying to do something like this:
Vertical line going from the center of the lower edge to the center of the ...
1
vote
2answers
29 views
How to know the points in a line given the starting and end points to traverse the line: any formula?
I'm using AS3. But it doesn't matter of what language am I using. I'm just finding logic on how to solve this problem.
I've done creating a line, drawing with graphics class given the start and end ...
0
votes
0answers
15 views
loading MIB file snmptranslate
I downloaded and put a MIB file into my /usr/local/share/snmp/mibs directory. I am trying to use
snmptranslate -m +necronIV-mib2-V1.4.11-three.mib -IR -On npm4TotalVoltageA
but i get error of
...
0
votes
2answers
31 views
Horizontal dashed line stretched to container width
I have a layout contained within a ScrollViewer in which I need to draw a horizontal dashed line that stretches to the full width of the container. The closest I've managed is the following
...
0
votes
1answer
22 views
Lines not behaving as they should
I am making a small program to simulate somekind piece of string, and I want it so that I can move middle parts of the string and the other parts move with it, I made the string out of segments of ...
0
votes
3answers
22 views
extract specific line from a file using awk
The data in the file:
...
...
a b c d letters
f g h i letters
j k letters
...
...
Using,
awk '/letters/' file
The result is:
a b c d letters
f g h i letters
j k letters
However I ...
0
votes
0answers
6 views
How to read nth word/int from a line in a text file?
I have a text file which I am reading line by line using...
BufferedReader br;
try {
br = new BufferedReader(new FileReader("test.txt"));
String line;
while ((line = br.readLine()) != null) {
...
2
votes
0answers
17 views
Dotted Line for PDF Rendering in iOS
I wont to know how to render a dotted line on a pdf.
CGContextRef currentContext = UIGraphicsGetCurrentContext();
CGContextSetStrokeColorWithColor(currentContext, [UIColor grayColor].CGColor);
...
-1
votes
2answers
81 views
How to calculate the point of intersection between two lines
I am attempting to calculate the point of intersection between lines for a Optical Flow algorithm using a Hough Transform. However, I am not getting the points that I should be when I use my algorithm ...
0
votes
1answer
25 views
Adding vertical line on xAxis in HighStock
I know I can plot horizontal lines on yAxis using plotLines, but how about vertical lines on xAxis?
Thanks!
0
votes
0answers
32 views
How to format an incoming sms into different parts?
how can i format a paragraph into different parts which is an incoming sms.For example
Android
5554
I wan reading a book.
So how can i set the first line in the paragraph as a string the next as an ...
0
votes
3answers
24 views
Avoid line breaks at specific places in TextView
I have a very long string in my strings.xml which is displayed in a TextView with ~10 lines. The string contains an url. The url must be completely displayed in 1 single line. Line breaks before or ...
0
votes
1answer
64 views
c++ Remove line from .txt file
I'm trying to remove a line from my .txt file. The file contains all the information regarding the account.
The line says "newAccount" and is made when creating the account. I use this so that I can ...
1
vote
0answers
15 views
Equation of line in complex plane
All the derivation of the equation of line on complex plane uses the fact that
(x,y) \in R^2 can be identified with x+iy \in C.
Thus, they begin with
ax+by+c = 0 then re-write x = (z+\bar{z})/2 and ...
1
vote
3answers
50 views
PHP: Use every line from txt to do this?
Trying to write a script that gets a line from txt (line is url), goes to the url, searches and grabs specific data. Grabbing the data works, but i need to do this multiple times. This is the find and ...
1
vote
4answers
52 views
Walk a line between two points in a 3D voxel space visiting all cells
I have a line-of-sight problem I need to solve by visiting all possible cells in a 3D voxel space between two (non-grid-aligned) points.
I have considered using a 3D Bresenham algorithm, but it will ...
1
vote
2answers
62 views
Create a line using a list of coordinates in python GUI
I've been trying to create a graph using a create_line and a list of (x,y) points.
import Tkinter
Screen = [a list of screen coordinates]
World = []
for x,y in screen:
...
1
vote
1answer
56 views
Matlab: animating an added line to an image
i am succeeding in adding a horizontal line to an image. i want the line to begin moving downward, while erasing the previous line. and finally i want to save this movie to avi format
here is my code
...
0
votes
0answers
22 views
ExpanderView Header with bigger Height
I have made an ExpanderView.HeaderTemplate with a height of 100. Now the little line doesn't start after the 100. It starts earlier so the line is overlapping the header. Is there a solution to make ...
0
votes
4answers
35 views
Joining truncated lines in a file
I have a file with broken lines as follows,
C12321 net12415431 net41432143 +
1.079879E-17
C12322 net2135 net648641 +
3.4659E-17
I want to create a file from this file which has lines as follows
...
2
votes
2answers
53 views
Drawing a curved line between two points in PHP
I want to draw a simple curved line between two points. More specifically, the top left and bottom right corner of an image of arbitrary size.
I tried using imagearc, but apparently that's not what ...
0
votes
0answers
14 views
Creating 3D line features in ArcGIS 10
Is there a way, in ArcGIS, to create a 3D line feature by connecting points in a 3D point feature class? The version of ArcGIS in question is ArcGIS 10.0, in case this helps.
0
votes
1answer
30 views
plotting from a loop in matlab
I get some strange problem in my matlab code, this is a part of my code:
for k=1:length(box11)
num_pts1(k)=sum(length(find(box11(:,k)>0)));
size1=sum(length(find(box11(:,:)>0)));
...
0
votes
1answer
28 views
Use GeometryUtils.merge on several Line objects in THREE.js
I want to merge several thousands of Line objects into a single geometry with GeometryUtils.merge to reduce lag, but it doesn't seem to work on Line objects. Is it possible? My technical mind says you ...
0
votes
0answers
12 views
Line break in android doesn't work
I am new to android and any help is greatly appreciated. In my SQLyte database I have many long strings in one column and I tried using "\n", "", "\r\n" to put line breaks but nothing seems to be ...
0
votes
1answer
47 views
Windows Batch Script - File iteration issue
Id like to read input from many files one at a time and process that input before going to the next file. All files have a special name that defines their order of input. It is as follows: ...
0
votes
1answer
71 views
donut chart with tick mark lines (d3)
i have three donut charts
var data = [
{
institution: [53245, 28479, 19697, 24037, 40245]
},
{
institution: [45, 9, 127, 37, 11]
},
{
...
0
votes
1answer
39 views
sc - Passing Username and Password to Remote Server using sc query
I'm trying to use sc query to check that the services I have on a remote server are running. Using sc query works fine on my local system, but my remote system requires a username and password at ...
0
votes
0answers
23 views
Header Margin and Background Image Causing Line IOS
I found my question asked here: Weird thin line under div with partially transparent background on android
but none of the answers worked.
I also found it here: Android WebView - background PNG ...
2
votes
1answer
41 views
Remove lines with efficient way
I have a data frame named df:
number value
1 5
2 5
3 5
4 6
5 6
6 6
7 6
...
2
votes
1answer
45 views
perl qw() function assigning lines instead of words
In Perl
@array=qw/this is a line
and a new one
then a new one
......
........./;
will result in each 'word' being assigned to the @array variables.
...
2
votes
1answer
36 views
Draw Line in the Direction of the Mouse Cursor
I have a line that I want to be drawn from the player x and y towards the mouse x and y but I want it to just go in the direction of the mouse cursor (I don't want it to be drawn from the player to ...
0
votes
1answer
16 views
Message in subject line [closed]
Just can see what I have done wrong here im geting the message in the subject line. and nothing in the message field I have very limited knowledge with php.
$name = stripslashes($_POST['name']);
...
0
votes
1answer
50 views
Predict cache line length using time measure
Hi it's my first post here so Hi everyone.
I have problem with predict cache line size in GNU AS. I wrote program in C which calls a function written in assembly.
here is this function
.section ...

