Recent content by AK2
-
A
How to divide an wav file into segments
Does anybody know how to do this in matlab?- AK2
- Thread
- File
- Replies: 1
- Forum: MATLAB, Maple, Mathematica, LaTeX
-
A
Suggest a book for problem solving
Can anyone suggest books that can help improving problem solving skills. Any book with engineering bent is a plus. Thanks- AK2
- Thread
- Book Problem solving
- Replies: 4
- Forum: Science and Math Textbooks
-
A
A Challenge Problem in Techniques Of Problem Solving
Thanks for the hint I got my answer for S S = (2k3+3k2+k)/6- AK2
- Post #4
- Forum: Calculus and Beyond Homework Help
-
A
A Challenge Problem in Techniques Of Problem Solving
I just need a hint to solve the problem. The method used is illustrated in the example problem as follows: I am supposed to imitate the method used in the example problem to solve the challenge problem in the book as follows Imitate the method used in the last problem to find a formula...- AK2
- Thread
- Challenge Problem solving
- Replies: 4
- Forum: Calculus and Beyond Homework Help
-
A
Is it advisabe to learn to computer languages?
Thanks for the cheat sheet. One thing I came to discover and understand about programming is that it forces you think in many ways in other to solve a problem.- AK2
- Post #6
- Forum: Programming and Computer Science
-
A
Is it advisabe to learn to computer languages?
I was learning MATLAB at one point. While surfing the net I found out about Python and started using the think python book to learn how to program. May be after I finishing the tutorial in Python Docs I will go back to MATLAB because I'm going to use it in class soon.- AK2
- Post #4
- Forum: Programming and Computer Science
-
A
Is it advisabe to learn to computer languages?
Is it advisabe to learn two computer languages at the same time? This is my situation. I am learning how to program and at the same time learning python. I'm using the Think Python book by Allen Downey. After finishing this book, is it good to start learning Matlab since I'm going to use it in...- AK2
- Thread
- Computer
- Replies: 5
- Forum: Programming and Computer Science
-
A
Learn C for Embedded Systems Design with PIC Microcontroller
thanks for the tips. I have covered some of the topics you mentioned. Guess I will have to work on the remaining and start studying the microcontroller. I will start with Bitwise operations.- AK2
- Post #10
- Forum: Electrical Engineering
-
A
Learn C for Embedded Systems Design with PIC Microcontroller
I need like a comprehensive list of topics in C I need to learn in C, so that I can be atleast be comfortable in them before I start studying microcontrollers. After having a good understanding of microcontrollers I can think of a good idea for a project using microcontrollers for now. I have...- AK2
- Post #7
- Forum: Electrical Engineering
-
A
Learn C for Embedded Systems Design with PIC Microcontroller
I am a beginner in programming and C is the first language I am learning. I am/was using Sams Teach Yourself C in 21 days. I think I'm going to drop it because its voluminous. I was reading K&R for a while but I didnt really get it. I think I will go back to it since the book I'm using is making...- AK2
- Post #4
- Forum: Electrical Engineering
-
A
Learn C for Embedded Systems Design with PIC Microcontroller
I am currently learning C so that I can design a project using a pic microcontroller. I want to learn C first before studying the microcontroller. I want to ask, what topics should I learn, so that I will be using what I need to know to program the chip. Thanks- AK2
- Thread
- Systems
- Replies: 9
- Forum: Electrical Engineering
-
A
Pointers and multidimensional arrays in C
Im using Windows XP and Vista for my programming lessons and both are 32 bit operating systems. An int is 4 bytes. I understand that multi points to multi[0] and multi[0] also points to multi[0][0]. Thanks for the explanation.- AK2
- Post #3
- Forum: Programming and Computer Science
-
A
Pointers and multidimensional arrays in C
/* Demonstrates passing a pointer to a multidimensional */ /* array to a function. */ #include <stdio.h> void printarray_1(int (*ptr)[4]); void printarray_2(int (*ptr)[4], int n); main() { int multi[3][4] = { { 1, 2, 3, 4 }, { 5, 6, 7, 8 }...- AK2
- Thread
- Arrays Multidimensional Pointers
- Replies: 2
- Forum: Programming and Computer Science
-
A
Redirecting Input and Output in C.
Thanks for the responses. I will try out what you posted. I want to ask another question. will learning how to use C streams be useful for programming a pic microcontroller and other engineering applications.- AK2
- Post #5
- Forum: Programming and Computer Science
-
A
Redirecting Input and Output in C.
Is there a way you can redirect both input and output in a Windows operating system. The book I am using only explains how to do this in DOS. Thanks.- AK2
- Thread
- Input Output
- Replies: 4
- Forum: Programming and Computer Science