Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
distance
- Page 1
McCharts - ArkTS
Programming
Software Development
1 Month Ago
by 杨_659
… the canvas (cSpace). It is mainly used to control the
distance
between the content area and the outer frame of the…
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by jkon
… and therefore I am sharing it. Browsers have different
distance
from viewport thresholds for loading="lazy" images…. For example, Chromium-based browsers have a
distance
from viewport threshold of 1250px to 2500px based on …become visible," and that could be even 1px
distance
from the viewport threshold. (If someone has an …
Re: How to Implement Lazy Loading for Faster Web Portals
Programming
Web Development
2 Months Ago
by jkon
… it almost unusable. Chromium-based browsers have a really high
distance
from viewport threshold, loading many images simultaneously upon page entry…
Distance Programming Problem
Community Center
13 Years Ago
by jacob001
Distance
Programming Problem Hello, Hi, I am using LabVIEW to program. …;? Because I put the number 1 in for the fixed
distance
and it goes nowhere but i put the number 10…
Re: distance calculation for XYZ coordiantes
Programming
Software Development
16 Years Ago
by DineshDC
distance
calculation for XYZ coordiantes I cant reach the link perlguru??? :( Can any one help me?? Even i have similar type of problem as annie_singe.. thank sin advance.. [I]<<email id snipped>>[/I]
Re: Distance between 2 points, area of triangle & convex hull
Programming
Software Development
14 Years Ago
by Fbody
Distance
(Pythagoras' Theorem): [TEX]c = sqrt (a^2 + b^ 2)[/TEX] Area of triangle: [TEX]( base * height )/2[/TEX] Those are a couple of the equations you'll need. The rest is just like any other program. Input, Process, Output. [CODE]int main() { return 0; }[/CODE]
Distance problem using java
Programming
Software Development
13 Years Ago
by mags11
… placeholder for starting point of time int
distance
; //
distance
// Create a Scanner object for keyboard …// Formula for finding the
distance
.
distance
= MPH*time; // Output the
distance
that the vehicle has traveled …
Re: Distance problem using java
Programming
Software Development
13 Years Ago
by mags11
I got it to work. I just had to put the i placeholder in the output in place of time, and substitute the i instead of
distance
for the
distance
formula. Man, it took me hours to fix this seemingly easy thing. Thanks a lot!
Re: Distance problem using java
Programming
Software Development
13 Years Ago
by zeroliken
… be 50 miles traveled.[/QUOTE] The value of time and
distance
doesn't change use the counter i instead and you…
Re: Distance problem using java
Programming
Software Development
13 Years Ago
by zeroliken
yes it's the for loop, the value of
distance
and time doesn't change to fix this you need to make use of the counter as a substitute for time
Re: Distance.. Where am I going wrong?
Programming
Software Development
12 Years Ago
by sfuo
…#include <cmath> using namespace std; double
Distance
(int x1, int y1, int x2, int y2) …x2-x1) + (y2-y1)*(y2-y1)); } double
Distance
( int coords[4] ) { return sqrt((coords[2]-… {150, 50, 15, 20}; cout <<
Distance
(coord[0], coord[1], coord[2], coord[3]) &…
distance calculation for XYZ coordiantes
Programming
Software Development
16 Years Ago
by annie_singh
…coordinates from a pdb file. I want to calculate the
distance
using these three coordinate values. First i want to …array. I have to use this formula to calculate the
distance
: $dist = sqrt(($x1-$x2)**2+($y1-$y2)**2+($z1…+($y1-$y2)**2+($z1-$z2)**2); and do an iterative
distance
calculation. am stuck.... my exiting code: open(IN, "…
Distance.. Where am I going wrong?
Programming
Software Development
12 Years Ago
by phorce
…'m trying to develop an algorithm/program that calculates the
distance
between two points. These values are stored inside a 1D… *argv[]) { int coord[2*2] = {150, 50, 15, 20}; double
distance
= 0; double dis1 = 0; double dis2 = 0; for(int i…
Re: distance calculation for XYZ coordiantes
Programming
Software Development
16 Years Ago
by Salem
… topic as before. In your loop, having worked out the
distance
between 6.324 32.707 50.379 5.197 32… and 2 Would you then need to work out the
distance
between 5.197 32.618 46.826 4.020 36… "@array\n"; if ( $. > 1 ) { # now work out
distance
between @old and @array } @old = @array; } close (IN); [/code]
Re: distance calculation for XYZ coordiantes
Programming
Software Development
16 Years Ago
by annie_singh
… to know how to calculate the
distance
and put them in an output file. The
distance
calculation is between row1_row2, then row1_row3… problem. I do not know how to do this iterative
distance
calcultion. Thank you,
Distance between 2 points
Programming
Software Development
20 Years Ago
by JayseR
…Write a program which will use functions to compute the
distance
between 2 points on a plane given their coordinates. …located at (x2,y2) then the formula for computing the
distance
is sqrt(sqr(x2-x1) + sqr(y2-y1)) … and echo the input 2. calculate -- will compute the
distance
between the points 3. print -- will print the results …
Distance trip program. Please help ?!
Programming
Software Development
15 Years Ago
by ITgirl2010
… of fuel for a road trip''' def main():
distance
= float(raw_input("Enter
distance
in kilometres: ")) litresPer100K = float(raw_input("Enter… = float(raw_input("Enter fuel price per litre ($): ")) cost =
distance
/ 100 * litresPer100K * pricePerLitre print "Fuel cost is $%0.2f…
Re: Distance.. Where am I going wrong?
Programming
Software Development
12 Years Ago
by sfuo
…;vector> #include <cmath> using namespace std; double
Distance
(vector<double> pt1, vector<double> pt2…(50); pt2.push_back(15); pt2.push_back(20); cout <<
Distance
(pt1, pt2) << endl; }
Re: Distance trip program. Please help ?!
Programming
Software Development
15 Years Ago
by ultimatebuster
I don't understand what you are doing wrong? Are you looking for a function? [CODE] def calculatefuel(
distance
, economy, price): return
distance
/ 100 * economy * price[/CODE]
Re: Distance calculation using Class
Programming
Software Development
14 Years Ago
by recyan
…which uses four numbers as arguments to calculate the
distance
between 2 points. Tried to unsuccessfully convert it … for Class,objects, etc. [CODE]#Program to calculate
distance
so that it takes two Points as arguments instead of…This appears to be working. [CODE]#Program to calculate
distance
so that it takes two Points as arguments instead …
Re: Distance trip program. Please help ?!
Programming
Software Development
15 Years Ago
by ITgirl2010
I need to calculate the fuel cost for a whole trip with keeping the three parameters (
distance
, econome and the price of fuel ) changeable
Re: Distance trip program. Please help ?!
Programming
Software Development
15 Years Ago
by TrustyTony
… cost for a whole trip with keeping the three parameters (
distance
, econome and the price of fuel ) changeable[/QUOTE] Maybe use…
Distance between 2 points, area of triangle & convex hull
Programming
Software Development
14 Years Ago
by XerX
… computes the following values: 1. The minimum
distance
between two points. 2. The maximum
distance
between two points. 3. The largest area…
Distance between cities.
Programming
Software Development
14 Years Ago
by syd919
… make a program that calculates the
distance
between several cities and prints out the shortest
distance
of them all, the input will…
Distance calculation using Class
Programming
Software Development
14 Years Ago
by recyan
… code which uses four numbers as arguments to calculate the
distance
between 2 points. Tried to unsuccessfully convert it to use… simple:) explainations for Class,objects, etc. [CODE]#Program to calculate
distance
so that it takes two Points as arguments instead of…
Distance between cities (a hard version)
Programming
Software Development
17 Years Ago
by grmskrk
… of cities, their latitudes and longitudes, a program must calculate
distance
between them. But, it isn't all. A program must…
Distance between two Cities (Python)
Programming
Software Development
17 Years Ago
by vegaseat
… the use of longitude and latitiude coordinates to calculate the
distance
between two given cities. You can obtain the coordinates for…
Distance Formula
Programming
Software Development
16 Years Ago
by vckicks
Calculate the
distance
between two points.
Distance between n points
Programming
Software Development
14 Years Ago
by Giorgio33
… coordinates of n points and I need to calculate the
distance
between each point until the other points. 2 0 3…
distance between two latitude and longitude points
Programming
Web Development
14 Years Ago
by karthik_ppts
Dear Frendz, How to find
distance
between two latitude and longitude points using php.
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC