Questions tagged [boundary]
481 questions
0
votes
1 answer
How to plot only boundary lines in gnuplot for data of the type (x,y,z)?
I have a data of the form x:y:z and currently I am plotting this data using Gnuplot with pm3d map. In this file, z values are either 0 or 1 or 2. Now I want to plot similar data from another file and this file in the same graph. Only thing is that…

Peaceful
- 4,920
- 15
- 54
- 79
0
votes
1 answer
How to show boundary in map v2 on opening map?
I have a boundary on map and i saved all those tapped co-ordinates of that boundary. I want to show that complete boundary when i opens the map. How can i achieve it? I tried it by changing the (zoom level) camera position but not getting.
Actually…

Shailendra Madda
- 20,649
- 15
- 100
- 138
0
votes
0 answers
Boundary conditions in MATLAB cellular automata model
I'm trying to write a code to implement a cellular automata model in MATLAB and I'm having difficulty at the boundaries. I am attempting to use cylindrical boundary conditions, so the top and bottom row activate one another whilst the left and right…

ren
- 13
- 1
- 3
0
votes
1 answer
How can I override requests' randomly generated multipart boundary in Python?
Example:
with open('foobar.txt') as f:
r = requests.post("http://requestb.in/179gbs61", files={'file':f})
This produces a request with a different a multipart boundary every time. i.e., this call produces a different request every time.
For the…

fatuhoku
- 4,815
- 3
- 30
- 70
0
votes
2 answers
Android: My LinearLayout expands out of its parent scrollview
Can anyone help me with this piece of xml code here is a print screen:
http://flic.kr/p/fKEqmn
Here is my xml code:

Chad
- 35
- 1
- 2
- 11
0
votes
2 answers
Python - Converting String to Integer for boundary inputs
I've been working on trying to get boundary inputs working in a small game of mine.
At first I got this error:
Exception in Tkinter callback
Traceback (most recent call last):
File "/usr/lib/python3.2/tkinter/__init__.py", line 1402, in __call__
…

ThatsNotMyName
- 572
- 2
- 8
- 24
0
votes
2 answers
Array buffer overflow
I have been studying about buffer
#include
using namespace std;
int main()
{
char input[3];
for(int i=0;i<100;i++){
cin>>input[i];
}
return 0;
}
The program goes on and on without stopping and with no signs of an overflow…

user2455103
- 505
- 2
- 4
- 13
0
votes
2 answers
set new boundary in Matlab
I have an array:
[0.0182, 0.5238, -0.0205, 1.1683, 0.9684, 0.9722, 0.5677, 0.9043, 0.0025, ...
0.9986, 0.4088, 0.5483, -0.0082, 0.5659]
I want to set new numbers in range of [0 0.5 1] for the above array. For example, 0.5238 is nearer to 0.5 than…

BlueBit
- 397
- 6
- 22
0
votes
1 answer
Boundary fill problem
Im stuck in this bunch of codes...i cant get the pixel to fill up the circle??...any help
#include
#include
struct Color{
float red, green, blue;
};
Color getPixel(int x, int y){ // gets the color of the pixel at…

Taaseen
- 1
- 1
- 1
0
votes
1 answer
Boundary Detection
I am working on a project in OpenGL 2.0. I load objects from a file, that file contains information about object names, its position, scale and rotation.
I got all these information in code, now I want to calculate the boundaries of all the objects…

Fahad Rauf
- 705
- 2
- 8
- 17
0
votes
1 answer
Astar boundary checking
So I have my Astar program running and it runs 4 outta 6 times, however it gives two different array out of bound errors at times.
I think its an issue of boundary checking, however I think I have my boundary checks right.
Can anyone help point out…

kkaul
- 147
- 1
- 2
- 13
0
votes
2 answers
Why for boundary analysis, the least unit should be specified?
The book Guide to advanced software testing mentiones that the smallest increment for BVA should always be known.
But I do not see why:
10 - 20 Boundary values 9,10 and 20,21.
10.0 - 20.0 Boundary values 9.9,10.0 and 20.0,20.1
I mean if there is a…

RichardT.
- 43
- 1
- 6
0
votes
1 answer
How to plot two 1-dimensional Gaussian distributions together with the classification boundary [Matlab]?
I have two classes(normally distributed), C1 and C2, each defined by their mean and standard deviation. I want to be able to visualize the pdf plot of a normal distributions and the classification boundary between the two. Currently I have the code…

Ferial
- 3
- 2
0
votes
1 answer
Image masking boundary with matlab
I have for example, an input grayscale image (say 65 X 65 pixels). I am trying to applying a self defined, 3X3 mask, for e.g:
M = [1 2 3; 4 5 6; 7 8 9]
and I want it to trace the mask throughout the entire image, except for at the boundaries (where…

John Tan
- 1,331
- 1
- 19
- 35
0
votes
1 answer
HTML5 canvas how to give it a boundary?
for a school assignment i am making a kite game..
i am a total javascript noob and i really need some help.
so i am at the point that i have an image moving by pressing the arrow buttons.
the problem now is that my image can go outside of the canvas…

Nick Zijlstra
- 327
- 2
- 6
- 14