Recent content by flamex1992

  1. F

    Looping Program to Generate Table of Values: A+2 from 3 to 15 using M-File

    wow i hardly to understand that.. currently stuck like slayer did.. I'm unable to get the answer X cm equal X foot X inch ----------------------- 1 more thing how to the product of the odd interger for 1 to 15.. currently doing for a=1:2:15 display('odd integers'); display(a)...
  2. F

    Looping Program to Generate Table of Values: A+2 from 3 to 15 using M-File

    can help my friend give a clue on her question ? we both don't have a clue on these question :confused: a) Write a program to convert centimeters to feet and inches. The input is number (floating, 2 decimal), in centimeters, the output should be the equivalent number of feet (integer) and...
  3. F

    Looping Program to Generate Table of Values: A+2 from 3 to 15 using M-File

    thx.. u have help me a lot now.. then again, how to add eq A+4 and A+6 in the same M-file rather than makin 3 m-files for 3 equations... isit possible btw?
  4. F

    Looping Program to Generate Table of Values: A+2 from 3 to 15 using M-File

    yup do it in matlab.. 'for loop' procedure is like how? the one tat i doing is called for loop?
  5. F

    Looping Program to Generate Table of Values: A+2 from 3 to 15 using M-File

    tis is the question my lacturer giv it to me.. I'm still not really understand wat the question wan.. can u tell the detail pls? i wuld aprreciate any helps Write a program that utilizes looping to produce the following table of values: A A+2 A+4 A+6 3 5 7 9 6...
  6. F

    Looping Program to Generate Table of Values: A+2 from 3 to 15 using M-File

    Question Write a program that utilizes looping to produce the following table of values: A --A+2 3 --5 6 --8 9 --11 12 --14 15 --17 and my input is with using the m-file for A=3:3:15 display ('A+2') A=A+2 end is it correct?