Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php on line 152
‘Software’ Articles at TC101 Fall 2015
Introduction to Programming Python and C++

Tag Archives: Software

Final Project!

We did it! My buddy and I finally acomplish our project for our TC101 class. Well, basically, our program had to do the following: “You will create a command-line program that uses two-dimensional arrays or matrices to process images. You… Continue Reading →

Creation and use of Arrays

C++ provides a data structure, the array, which stores a fixed-size sequential collection of elements of the same type. An array is used to store a collection of data, but it is often more useful to think of an array as… Continue Reading →

Visualization of Data with Tools

A simple and really cool tool and the one that we are going to learn to use is Scilab. What is Scilab ? Scilab is free and open source software for numerical computation providing a powerful computing environment for engineering and scientific… Continue Reading →

Creation and use of Vectors in C++

A vector is a container in the C++ Standard Library (a bunch of stuff which sort of comes “bundled” with C++) which is essentially just an array that can grow and shrink in size. These things have been highly optimized… Continue Reading →

Use of “Switch” as a Conditional.

The syntax of the switch statement is a bit peculiar. Its purpose is to check for a value among a number of possible constant expressions. It is something similar to concatenating if-else statements, but limited to constant expressions. Its most… Continue Reading →

Scilab! The last one.

In this WSQ we had to download, install and use a new program called Scilab which is an IDE really usefull because it let you do mathematical operations really easy and also calculate graphics and write lines of code. I… Continue Reading →

Calculate e.

Hello. In this WSQ I had to calculate the e number of a value, here is the full instruction: “In this assignment you will estimate the mathematical constant e. You should create a function called calculuate_e which receives one parameter… Continue Reading →

Babylonian Method for Square root

Hello there, welcome again! In this WSQ #13 we had to write a program which do the following: “The function should receive a number and return floating point number. Obviously you should test your function, so create a main program… Continue Reading →

PROJECT ADVANCE! STAGE 2 AND 3.

For stage 2 and 3 of the final project I got into the research of how to make the program using the library in Ubuntu and well, it was quite easy, now the challenge will be to start writing the… Continue Reading →

Euclids Algorithm

In this WSQ I had to write a code in which I could use the already known Euclids Algorithm to find the Greatest Common Divisior of two numbers that will be asked to the user. Euclids Algorithm: The Euclidean algorithm… Continue Reading →

What should you work on?

Week #12 and more partial exams for you.

For this week's readings:
C++ (TC1017) should either be looking at support for your project, ImageMagick C++ libraries are a good start.
Python (TC1014) should be finishing chapter 11 (Dictionaries).