Posts

Showing posts from June 18, 2021

New Post

Algorithms Behind Space Missions ~xRay Pixy

Image
Learn different algorithms used in Space Missions. Video Link Video Chapters: Algorithms Behind Space Missions 00:00 Introduction 00:52 Space Missions 04:26 Space Missions Challenges 07:04 Algorithms Used in Space Missions 10:36 Optimization Techniques 11:44 Conclusion  NASA conducts space missions to explore the universe for various scientific, technological, and practical reasons: Understanding Our Place in the Universe Search for Life Beyond Earth Studying Earth from Space Advancing Technology Supporting Human Exploration Resource Utilization Inspiring Humanity Examples of NASA Space Missions Apollo Program: Sent humans to the Moon (1969–1972). Mars Rovers (Spirit, Opportunity, Perseverance): Explored Mars' surface and geology. Voyager Missions: Studied the outer planets and interstellar space. Hubble Space Telescope: Captured breathtaking images of the universe. International Space Station (ISS): Supports research in microgravity and international collaboration. Different ...

Whale Optimization Algorithm for Association Rule Mining.

Image
 Whale Optimization Algorithm for association rule mining. Input: Number of Maximum Iteration and Population Size, Minsupport, minconfedence.  Step 01: Initialize the population size for n search agents.[Xi(i=1,2,3,...n)] Step 02: Initialize i, A, C, L, and p. Step 03: Compute the fitness value of each search agent/whale. Step 04: X* = the best rule Step 05: While (CurrentIteration <= MaximumIteration ) Step 06: Update a, A, C, L and p. Step 07: For all whale poplation check          if (p<0.5) if(|A|<1)    For each Item in the solution Xi.    Update Items. Else if(|A|=1)     Select a random Item in Xi. Update Items. End if        For each item in the solution Xi. If the Item is odd, it belongs to the antecedent, Otherwise, it belongs to the consequence. End for Step 08: Calculate the fitness of each search agent. Step 09: Update X* if there is a better solution. Ste...
More posts