Recent content by AK2

  1. A

    How to divide an wav file into segments

    Does anybody know how to do this in matlab?
  2. 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
  3. A

    A Challenge Problem in Techniques Of Problem Solving

    Thanks for the hint I got my answer for S S = (2k3+3k2+k)/6
  4. 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...
  5. 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.
  6. 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.
  7. 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...
  8. 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.
  9. 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...
  10. 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...
  11. 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
  12. 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.
  13. 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 }...
  14. 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.
  15. 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.
Back
Top