algorithm for finding prime numbers in java

Báo cáo sinh học: " A polynomial time biclustering algorithm for finding approximate expression patterns in gene expression time series" pps

Báo cáo sinh học: " A polynomial time biclustering algorithm for finding approximate expression patterns in gene expression time series" pps

... [11], in order to obtain reasonable runtimes Furthermore, the inherent difficulty of this problem when dealing with the original real-valued expression matrix and the great interest in finding ... have incoming suffix links b) It has incoming suffix links only from nodes ui such that, for every node ui, the number of leaves in the subtree rooted at ui is inferior to the number of leaves in ... CCC-Biclusters when looking for maximal eCCC-Biclusters (e > 0) We therefore need to explore the relation between finding e-CCC-Biclusters and the Common Motifs Problem, as explained below Finding e-CCC-Biclusters

Ngày tải lên: 12/08/2014, 17:20

39 222 0
A distance based incremental filter wrapper algorithm for finding reduct in incomplete decision tables

A distance based incremental filter wrapper algorithm for finding reduct in incomplete decision tables

... when adding and deleting an object set Yu et al [14] constructed incremental formula for computing information entropy and they proposed incremental algorithms to find one reduct when adding and ... at command line is O  U *  U  U 506   In the best case, the A distance based incremental Filter-Wrapper algorithm for finding reduct in IDS algorithm finishes at command line (the reduct ... measure in [21] when adding a single object and multiple objects By using this incremental formulas, an incremental algorithm to find one reduct will be developed in Section IV Given an incomplete

Ngày tải lên: 12/02/2020, 13:46

14 34 0
an algorithm for finding common solutions of various problems in nonlinear operator theory

an algorithm for finding common solutions of various problems in nonlinear operator theory

... mappings and the monotone mappings, we introduce the following definition: a mapping A with domain D(A) and range R(A) in E is called monotone if and only if for all x, y ∈ D(A), the following inequality ... optimization) In Section , we defined a Lipschitz continuous mapping and an inverse strongly monotone mapping Inverse strongly monotone mappings arise in various areas of optimization and nonlinear analysis ... nonexpansive mappings; real Hilbert space; pseudocontractive mappings; variational inequality problem Introduction Let H be a real Hilbert space A mapping T with domain D(T) and range R(T) in H is called

Ngày tải lên: 02/11/2022, 08:57

17 1 0
Báo cáo hóa học: " Research Article A Hybrid Projection Algorithm for Finding Solutions of Mixed Equilibrium Problem and Variational Inequality Problem" pptx

Báo cáo hóa học: " Research Article A Hybrid Projection Algorithm for Finding Solutions of Mixed Equilibrium Problem and Variational Inequality Problem" pptx

... problems; in other words, equilibrium problems are a unified model for problems arising in physics, engineering, economics, and so on see 10 As in the case of nonexpansive mappings, also in the ... Hindawi Publishing Corporation Fixed Point Theory and Applications Volume 2010, Article ID 383740, 19 pages doi:10.1155/2010/383740 Research Article A Hybrid Projection Algorithm for Finding ... those for nonexpansive mappings The reason, probably, is that the second term appearing in the previous definition impedes the convergence analysis for iterative algorithms used to find a fixed point

Ngày tải lên: 21/06/2014, 20:20

19 452 0
Báo cáo hóa học: " Research Article Strong Convergence of a Modified Iterative Algorithm for Mixed-Equilibrium Problems in Hilbert Spaces" pdf

Báo cáo hóa học: " Research Article Strong Convergence of a Modified Iterative Algorithm for Mixed-Equilibrium Problems in Hilbert Spaces" pdf

... method for the variational inequality problem over the intersection of fixed point sets of nonexpansive mappings,” in Inherently Parallel Algorithms... general iterative algorithm for ... mappings is a task that occurs frequently in various areas of mathematical sciences and engineering. For example, the well-known convex feasibility problem reduces to finding a point in the intersection ... nonexpansive mappings, let FT i  denote the fixed-point set of T i ,thatis,FT i  : {x ∈ C : T i x  x}.Findingan optimal point in the intersection ∩ N i1 FT i  of the fixed-point sets of a

Ngày tải lên: 22/06/2014, 03:20

23 284 0
Báo cáo hóa học: " Research Article Algorithms for Finding Small Attractors in Boolean Networks" potx

Báo cáo hóa học: " Research Article Algorithms for Finding Small Attractors in Boolean Networks" potx

... future work. 2. ANALYSIS OF ALGORITHMS USING GENE ORDERING FOR FINDING SINGLETON ATTRACTORS In this section, we present algorithms using gene ordering for identification of singleton attractors along ... (unexpressed). Although such binary expression is very simple, it can retain meaningful biological information con- tained in the real continuous-domain gene expression pro- files. For instance, it can be ... Hindawi Publishing Corporation EURASIP Journal on Bioinformatics and Systems Biology Volume 2007, Article ID 20180, 13 pages doi:10.1155/2007/20180 Research Article Algorithms for Finding

Ngày tải lên: 22/06/2014, 19:20

13 318 0
Báo cáo hóa học: " Analysis of Iterative Waterfilling Algorithm for Multiuser Power Control in Digital Subscriber Lines" pptx

Báo cáo hóa học: " Analysis of Iterative Waterfilling Algorithm for Multiuser Power Control in Digital Subscriber Lines" pptx

... without coordination. What is surprising is that this seemingly totally distributed algorithm can in fact be viewed equivalently as a coordinate descent al- gorithm for the minimization of a single ... the existing convergence results, but also yields surprising insight on IWFA. In particular, in the case of symmetric interference, the users of IWFA in fact collab- orate unknowingly to minimize ... Professor in 1998 and held the Canada Research Chair in information processing since 2001. Starting April 2003, he has been a Professor with the Department of Electrical and Computer Engineering and

Ngày tải lên: 22/06/2014, 23:20

10 415 0
an optimal algorithm for relay node assignment in cooperative ad hoc networks

an optimal algorithm for relay node assignment in cooperative ad hoc networks

... correctness proof of its optimality in Section VI. B. Algorithm Details In the beginning, ORA algorithm performs a “preprocess- ing” step. In this step, for each source-destination pair, the source node ... the algorithm terminates. Subroutines Find Another Relay(S(r j ), r j , C min ): 7. For every “unmarked” relay r k with C R (S(r j ), r k ) > C min , do the following in the non-increasing ... starting point of this step, ORA algorithm identifies the smallest data rate C min among all sources. ORA algorithm aims to increase this minimum rate for the corresponding source node, while having

Ngày tải lên: 08/07/2014, 17:06

14 259 0
Minimax algorithm tic tac toe AI in java

Minimax algorithm tic tac toe AI in java

... System.out.println("Your move: "); int x = scan.nextInt(); int y = scan.nextInt(); Point point = new Point(x, y); placeAMove(point, 2); } public void displayBoard() { System.out.println(); for (int i ... availablePoints.add(new Point(i, j)); } } } return availablePoints; } public void placeAMove(Point point, int player) { board[point.x][point.y] = player; //player = for X, for O } public Point returnBestMove() ... rootsChildrenScores.get(best).point; void takeHumanInput() { System.out.println("Your move: "); int x = scan.nextInt(); int y = scan.nextInt(); Point point = new Point(x, y); placeAMove(point, 2); } public

Ngày tải lên: 01/07/2017, 21:24

22 856 4
Heuristic constructive algorithm for work-shift scheduling in bus rapid transit systems

Heuristic constructive algorithm for work-shift scheduling in bus rapid transit systems

... revised format: performed using a recursive algorithm based on dynamic scheduling In the second stage, workMarch 29, 2019 shift construction based on graph theory is performed using a pairing algorithm ... shown in Algorithm and in Algorithm Algorithm Division of tables Require: , , ← Ensure: Better set of divisions 1: for Each Table in 2: Divisions ←Divisions ∪ DynamicScheduling(0,0); 3: end for ... of making different pairings recursively on the same graph, as described in the following:  A simple pairing of nodes is performed according to graph considering probability Each shift formed

Ngày tải lên: 26/05/2020, 22:39

12 14 0
ProMotE: An efficient algorithm for counting independent motifs in uncertain network topologies

ProMotE: An efficient algorithm for counting independent motifs in uncertain network topologies

... Identifying motifs in biological networks is essential in uncovering key functions served by these networks Finding non-overlapping motif instances is however a computationally challenging task ... Embedding), to tackle the problem of counting independent motifs in a given probabilistic network We formally define the problem in “Preliminaries and problem definition” section We explain our ... genes, which in turn affect the ability of proteins to interact [14] Existing studies model the uncertainty of biological interactions using a probability value showing the confidence in its presence

Ngày tải lên: 25/11/2020, 14:03

17 7 0
G4PromFinder: An algorithm for predicting transcription promoters in GC-rich bacterial genomes based on AT-rich elements and G-quadruplex motifs

G4PromFinder: An algorithm for predicting transcription promoters in GC-rich bacterial genomes based on AT-rich elements and G-quadruplex motifs

... aeruginosa PA14 Di Salvo et al BMC Bioinformatics (2018) 19:36 Page of 11 and PromPredict whose coordinates falling within those regions and all the predicted TSSs by bTSSfinder falling within ... (F1-score 0.38 in S coelicolor A3(2), F1-score 0.36 in P.aeruginosa PA14), and finally bTSSfinder for Cyanobacteria σ factors (F1-score 0.28 in S coelicolor A3(2), F1-score 0.28 in P.aeruginosa PA14) ... Hoogsteen hydrogen binding to form a square planar structure called a guanine tetrad, and two or more guanine tetrads can stack on top of each other to form a G-quadrulpex [12–15] Interestingly, more

Ngày tải lên: 25/11/2020, 15:07

11 15 0
A WEIGHTED-TREE SIMILARITY ALGORITHM FOR MULTI-AGENT SYSTEMS IN E-BUSINESS ENVIRONMENTS

A WEIGHTED-TREE SIMILARITY ALGORITHM FOR MULTI-AGENT SYSTEMS IN E-BUSINESS ENVIRONMENTS

... Canada Institute for Information Technology e-Business, National Research Council of Canada, Fredericton, New Brunswick, Canada A tree similarity algorithm for match-making of agents in e-Business ... input that information Thus, a user interface is needed for human buyers and sellers to input their descriptions The interface implements a standard schema by generating instance trees only for ... their favorite interaction language For certain nodes, also ‘built-in’ types could be employed, for example, boolean or string FIGURE A learner interface snapshot inputting the tree in Figure Based

Ngày tải lên: 19/10/2022, 02:46

20 6 0
fast and accurate algorithm for core point detection in fingerprint images

fast and accurate algorithm for core point detection in fingerprint images

... J A novel algorithm for detecting singular points from fingerprint images IEEE Trans Pattern Anal Mach Int 2009;31(7):1239–50 [20] Le T, Van H Fingerprint reference point detection for image retrieval ... point detection; Singular point; Fingerprint segmentation; Ridge orientation; Orientation smoothing Abstract The core point is used to align between the fingerprints in the fingerprint authentication ... engineering (ICCEE), United Arab Emirates; 2009 p 469–73 Fast and accurate algorithm for core point detection in fingerprint images [23] Ahmadyfard A, Nosrati MS A novel approach for fingerprint

Ngày tải lên: 02/11/2022, 10:47

11 4 0
Building an application for finding tourist attraction in vietnam based on mern stack

Building an application for finding tourist attraction in vietnam based on mern stack

... MINISTRY OF EDUCATION AND TRAINING HO CHI MINH CITY UNIVERSITY OF TECHNOLOGY AND EDUCATION GRADUATION THESIS INFORMATION TECHNOLOGY BUILDING AN APPLICATION FOR FINDING TOURIST ATTRACTION IN ... 18110366 Majors: Information technology Subject: Building an application for finding tourist attraction in Vietnam based on MERN Stack Instructor: Ph.D Le Vinh Thinh COMMENT 1.Regarding the content ... HO CHI MINH – 1/1/2022 HO CHI MINH UNIVERSITY OF TECHNOLOGY AND EDUCATION FACULTY OF INFORMATION TECHNOLOGY □🕮□ GRADUATION THESIS BUILDING AN APPLICATION FOR FINDING TOURIST ATTRACTION IN VIETNAM

Ngày tải lên: 17/07/2023, 15:29

220 8 0
Luận văn thạc sĩ Kỹ thuật công nghiệp: Integrating dmaic framework and dbscan clustering algorithm for enhanced quality assurance in semiconductor manufacturing

Luận văn thạc sĩ Kỹ thuật công nghiệp: Integrating dmaic framework and dbscan clustering algorithm for enhanced quality assurance in semiconductor manufacturing

... performance while shrinking in size, following the trajectory predicted by Moore’s Law [1] This evolution brings forth new challenges for semiconductor manufacturing companies The increasing complexity ... substrate using TCB advanced technology Therefore, maintaining control over the bonding process quality is the primary challenge in this operation.Overview about Bonding machineAfter receiving substrate ... Kumar, "Exploring the Potential of Six Sigma (DMAIC) in Minimizing the Production Defects," in Proceedings of the International Conference on Industrial & Mechanical Engineering and Operations

Ngày tải lên: 25/09/2024, 14:44

75 1 0
báo cáo hóa học:" Robust reconstruction algorithm for compressed sensing in Gaussian noise environment using orthogonal matching pursuit with partially known support and random subsampling" pdf

báo cáo hóa học:" Robust reconstruction algorithm for compressed sensing in Gaussian noise environment using orthogonal matching pursuit with partially known support and random subsampling" pdf

... downloaded, printed and distributed freely for any purposes (see copyright notice below) For information about publishing your research in EURASIP Journal on Advances in Signal Processing go to http://asp.eurasipjournals.com/authors/instructions/ ... containing the indexes of the bases in LL subbands, Γ = {γ1, γ2, , γ|Γ|} • The number of non-zero entries in the sparse signal, k Output: • The set containing k indexes of the non-zero element in ... reproduction in any medium, provided the original work is properly cited Robust reconstruction algorithm for compressed sensing in Gaussian noise environment using orthogonal matching pursuit

Ngày tải lên: 21/06/2014, 17:20

47 412 0
Báo cáo hóa học: " Research Article A Scheduling Algorithm for Minimizing the Packet Error Probability in Clusterized TDMA Networks" pptx

Báo cáo hóa học: " Research Article A Scheduling Algorithm for Minimizing the Packet Error Probability in Clusterized TDMA Networks" pptx

... comparing the PER for the node-sink link of node m,denotedby P e,m ,withP loss for the same link. An analytical expression for P e,m can be obtained by integrating the instantaneous PER over the SINR ... obtained when using the auction algorithm to enforce constraints on nodes in C k . Intuitively, this dual variable update approach can be interpreted as follows. If, after fixing the schedule for ... not suitable in fading channels where the link gains vary over time, unless all the instantaneous link gains are frequently measured and made available to the scheduler, resulting in much added

Ngày tải lên: 21/06/2014, 22:20

10 322 0
Báo cáo hóa học: " Research Article Location-Based Self-Adaptive Routing Algorithm for Wireless Sensor Networks in Home Automation" doc

Báo cáo hóa học: " Research Article Location-Based Self-Adaptive Routing Algorithm for Wireless Sensor Networks in Home Automation" doc

... location information for the sensor nodes to confine route discovery flooding to a cylindrical request zone instead of searching blindly for a route in the whole network. This reduces the routing overhead ... trans- mission, in this paper we present a new routing algorithm for WSNHA, namely, WSNHA-LBAR (location-based self- adaptive routing for WSNHA). Instead of using flooding technology to search blindly for ... Self-Adaptive Routing Algorithm for Wireless Sensor Networks in Home Automation Xiao Hui Li, 1 Seung Ho Hong, 2 and Kang Ling Fang 1 1 College of Information Science and Engineering, Engineering Research...

Ngày tải lên: 21/06/2014, 05:20

15 434 0
w