Posts

New Post

Intelligent Traffic Management Using || AI & Metaheuristics || ~xRay Pixy

Image
Hybrid Artificial Intelligence and Metaheuristics for Smart City TRafci Management Problem Video Chapters: 00:00 Introduction 00:40 Smart Cities 01:14 Traditional Methods for Traffic Management 02:12 Hybrid Approach AI and Metaheuristics 02:47 STEPS for Hybrid  Traffic Management System 08:40 Advantages of Smart Traffic Management System 09:33 Conclusion

Learn to Code with MATLAB

Image
MATLAB CODE: Produce a 7x10 Dimension matrix with maximum integer number 50 using Randi Function. a.) Reach the element that is in 5 rows and 8 columns and display on the screen. b.) Select a region between 3 and 6 Row and 5 and 9 columns. Save extracted resign into a variable and display it on the screen. c.) Add new Row to your matrix as 8th row. d.) Add new Column to your matrix as the 11th column. MATLAB CODE: Problem| Produce a 7x10 Dimension matrix with maximum integer 50 using Randi Function Click Here...For Video Link

Introduction to Computer Programming with MATLAB

Image
Write a Program that ask the user for an age and then classifies the age according to following scheme:             0<=Baby<=1<=Child<=Teenager<=18<=Adult<=60<=Senior<120 Program Logic: We used here, IF-ELSE-IF Statement to solve this problem using MATLAB; MATLAB CODE: Program for Age Classification using IF-ELSE-IF Statement ~xRay Pixy      Video Link...Click Here

FOR LOOP - Programming in C++

Image

Modeling and Simulation |Operating System simulation |

Image
research ideas, to the verification of the hardware design. 

Code Generation Issues

Image

LOOPING STRUCTURE - WHILE LOOP, DO-WHILE LOOP

Image

Code Generator

Image

Discrete Event Simulation (DES)

Image
Discrete event simulation  ( DES ) is the process of codifying the behavior of a complex system as an ordered sequence of well-defined  events . In this context, an  event  comprises a specific change in the system's state at a specific point in time.

Programming in C++

Image
Decision Statements: Conditional Statements

Conditional Statements |Programming in C++| ~xRay Pixy

Image

Linear Congruential Generator | Modeling and Simulation |

Image
Random Number Generator Methods in Modeling and Simulation 1.) Middle Square Method for Random Number Generation (discussed before)          Middle Square Method for Random Number Generation 2.) Linear Congruential Generator          Linear Congruential generator |Modeling and Simulation|~xRay Pixy Linear Congruential Generator is the most widely used method for Random Number Generation. Linear Congruential Generator Produce a sequence of integers between 0 and m-1. Generate a Sequence of Random Numbers for (a, c, m) = (1, 5, 13) and Z0 = 1 Question For you Video :  Linear Congruential generator |Modeling and Simulation|~xRay Pixy Video Link https://youtu.be/h0qCg8hBfcE

Operator Precedence & Operators Associativity

Image
Operator Precedence  in C++ Operator precedence determines which operator is performed first in an expression with more than one operator.  In C++, we use the Operator Precedence rule to solve the problem like this- (5 + 8 * 3). Precedence Determine the order in which the operators are performed. An operator with Higher Precedence is evaluated before the operator with lower precedence. https://youtu.be/5_3IN1NHa9k Video: Operator Precedence in C++ Operator Associativity Chart Multiply (*) operator has higher precedence than addition operator (+). Questions for your Practice 1.) 7 + 3 * 2                                             Ans.  13 2.) 10 + 20 * 30 Ans.  610 3.) 100 / 10 * 10 Ans.  100 4.) 100 + 200 / 10 – 3 * 10                Ans.  90 5. ) 10 / 5 + 6 – 5 % 3 * 5        Ans.  - 2
More posts