Pinned Repositories
sps-22-team21
colab
CryptKeyPer
ECE3310
ECE3310 - Data Structures and Algorithms with Menglai Yin
ECE_3301_Labs
A introduction in Microcontrollers using the PIC 18F4620
Engr-103-Final-Project
F22_ECE4715
Repo containing codes for ECE 4715 (Fall 2022)
Kepler452
Kepler452-B
mluna030.github.io
mluna030's Repositories
mluna030/Kepler452-B
mluna030/mluna030.github.io
mluna030/colab
mluna030/ECE3310
ECE3310 - Data Structures and Algorithms with Menglai Yin
mluna030/ECE_3301_Labs
A introduction in Microcontrollers using the PIC 18F4620
mluna030/Engr-103-Final-Project
mluna030/F22_ECE4715
Repo containing codes for ECE 4715 (Fall 2022)
mluna030/git_test
mluna030/Kepler452
mluna030/HID_BOOTLOADER
mluna030/Homework-4
Homework for CS150 class
mluna030/HW_3_CS150
Create four functions for addition, subtraction, multiplication, and division that each accept an array of doubles (remember that arrays are always passed by reference without needing an &) as well as an operand of type double passed by value. Each function will perform its’ operation on each element of the array using the operand.Example: Operation is addition, array contents are [2.5, 4.5, 6.5, 8.5, 10.5], operand is 7, the array would be changed to contain [9.5, 11.5, 13.5, 15.5, 17.5].Hint: Remember that arrays are always passed by reference, so your return types for these functions should be void.Create a fifth function that prints the contents of the array to the screen, one element per line. This function should accept an array of doubles as its’ only argument. The print function should not modify the contents of the array in any way – declare the parameter as const to ensure that this is the case (note that you could not do this with the four other functions since they need to modify the array). The print function should also return void.In main ask the user to enter the values to store in the array. Print the array using your print function. Have the user select an operation to perform on the array by typing +, - , * or /, then enter an operand. Perform the given function on the array using the given operand and then print the array contents using your print function again.Use a global int constant for the size of the array – set it to 5. If the global constant is changed in the code your program should still work properly.Make sure nothing in your code results in junk values or causes a segmentation fault.
mluna030/intVector
mluna030/lab-23
mluna030/lab-26
mluna030/lab24
mluna030/lab27
mluna030/lab27.28
mluna030/Lab_19
mluna030/lab_20
functions for CS 150 class
mluna030/Lab_21
Struct data type test
mluna030/Lab_22
class test c++
mluna030/Last-of-the-labs
Repo consisting of unfinished labs to turn in monday may 20, 2019
mluna030/Max-pairwise-product
In this programming challenge, your goal is to implement a program that works in less than one second even on huge datasets. In section Maximum Pairwise Product of the file week1_programming_challenges/week1_programming_challenges.pdf we walk you through a step-by-step process of solving this challenge.
mluna030/maxpairproduct
mluna030/mcc-csclub.github.io
MCC-CSClub website development repository.
mluna030/Michael-Luna
mluna030/Temperature-Sensor
Final lab for the Electrical and Computer Engineering Introduction to Microcontrollers
mluna030/TItanic_ML
This is the legendary Titanic ML competition – the best, first challenge for you to dive into ML competitions and familiarize yourself with how the Kaggle platform works. The competition is simple: use machine learning to create a model that predicts which passengers survived the Titanic shipwreck.
mluna030/VoltageDivider
Simulation of Electric Circuits with Matlab