Questions tagged [segment]

Segment is an ambiguous tag and one should refrain from using it. It has several, very different, meanings in CS. Please try and pick a more accurate tag for your post.

  • Segmentation (memory), the division of computer memory into segments
  • Image segment created in computer vision
  • String segment, the substring of a pattern delimited by two don't cares or one don't care and beginning or end of the pattern
  • Network segment, a part of a larger computer network
  • A protocol data unit of the transport layer in computing, e.g. TCP segment
625 questions
0
votes
1 answer

How memory management really works?

I've been learning about windows RAM memory managemant. I have read several articles and still have two big important and confusing question: 1. Is the division to segments done on the memory as whole, or is it done only with each running process…
Joe
  • 1
0
votes
1 answer

How can i reduce __TEXT segment size in iOS App?

My App failed to submit due to app size problem before, and the following build options were applied. So I could submit an app. *. Dead Code Stripping(DEAD_CODE_STRIPPING) : YES *. Enable C++ Exceptions(GCC_ENABLE_CPP_EXCEPTIONS) : NO But at this…
0
votes
2 answers

Segmentation in SAS

I have a dataset on a portfolio and wanted to some segmentation in SAS. A portion of the dataset looks like the following: ID Var1 Prod Date Balance 1 10 L1 Jul-09 200 1 10 L2 Aug-09 300 2 5 …
user2641784
  • 377
  • 3
  • 5
  • 13
0
votes
1 answer

how to show all the Object in static ion-segment

I am trying to have one static button in segment and remaining are dynamic my dynamic part is working but my static segment button is not showing all the product here is my .html file
Mohan Gopi
  • 7,606
  • 17
  • 66
  • 117
0
votes
1 answer

How to filter an object in an array ion-segment in ionic 2

Here is my below code .html file All
Mohan Gopi
  • 7,606
  • 17
  • 66
  • 117
0
votes
0 answers

codeigniter not display redirect page same

I want when I add a product to the cart and reload the same page, but the problem did not this product. The controller public function detail() { $data=array('title' =>'Ecommerce Online | Detail Product', 'username' …
Anonymous
  • 25
  • 1
  • 9
0
votes
1 answer

Cannot Make Code Segment Execute-Only (Not Readable)

I'm trying to make the Code Segment Execute-Only (Not Readable). But I FAILED after I tried everything the Manual told me to. Here is what I did to make the code segment unreadable. >uname -a Linux Emmet-VM 3.19.0-25-generic #26~14.04.1-Ubuntu SMP…
0
votes
1 answer

Coordinates of a segment that I have drawn

I want to remove little segments (data = station_EVHOE) that are outside a zone. the map here For this, I drew a black segment which demarcates the relevant zone (which is the region on the right). So I want to remove points which are in the left…
Loulou
  • 703
  • 5
  • 17
0
votes
1 answer

Is "memory segment" an intel-only concept in assembly programming?

Sees linux memory management is page-based only, not having the concept of "segment". But still, the at&t assembly has the concept of "section", like code section, data section, just like intel assmebly's "segment", and they look very similar. So my…
Troskyvs
  • 7,537
  • 7
  • 47
  • 115
0
votes
2 answers

How to make a definition function to find particular symbols

Suppose I have a data set like this Language: English Place: Seattle Segments: b,p,m,d,t Language: Mandarin Place: HK Segments: n,i,o,h Language: Cantonese Place:HK Segments:l,e,h,o and it continues to have a pattern like…
Robbie
  • 61
  • 5
0
votes
1 answer

Ionic 2 ion-segment ngFor with data from model

I've just started using Ionic 2 recently, one of my PWA's pages is supposed to display info on the week's menus from different restaurants. What I am trying to do is have a ion-segment with a button for each one of those restaurants that would let…
Joao Ventura
  • 65
  • 1
  • 11
0
votes
0 answers

HubSpot contact properties via Segment API

We are adding custom properties on contact during the track events, per this documentation: https://segment.com/docs/integrations/hubspot/ analytics.track(user_id='YOUR_USER_ID', event='Bought Item', properties={ 'email': 'peter@initech.com', },…
mikebz
  • 3,277
  • 8
  • 37
  • 50
0
votes
1 answer

How do I extract the edges from a segment delaunay graph in CGAL?

I need to find the medial axis of a concave polygon with holes. I'm using CGAL. My current approach is: Build the 2D segment delaunay graph of the polygon Extract the resulting output segments (bisectors) Test each segment to find if it's inside…
Frank
  • 335
  • 2
  • 10
0
votes
1 answer

Squeeze extreme ranges in a data.frame

I have a data.frame which contain 3 columns named start, end and width. Each line represent a segment over a 1D space with a start, and end and a width such as the "width = end - start + 1" Here is an example d = data.frame( start = c(12, 50, 100,…
Remi.b
  • 17,389
  • 28
  • 87
  • 168
0
votes
2 answers

Codeigniter : Loading a different view in a loop according to URI segment

I have a list of buildings that I load from my model. Those buildings are showed in a loop within my view as so : Controller public function index() { $data['buildings'] = $this->Base_Model->getUserBuildings(); $this->load->view('game', $data);…
user488620