Login

Welcome, Guest. Please login or register.

April 26, 2025, 11:26:50 am

Author Topic: ENG1060 Computing  (Read 42523 times)  Share 

0 Members and 1 Guest are viewing this topic.

darkphoenix

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1564
  • Respect: +3
ENG1060 Computing
« on: March 27, 2011, 12:35:12 am »
0
Anyone else finding this subject hard?  :-\
2009: Accounting
2010: English | Methods (CAS) | Specialist Maths | Chemistry | Chinese SL
2011: Bachelor of Commerce/Engineering @ Monash

m@tty

  • Victorian
  • ATAR Notes Legend
  • *******
  • Posts: 4324
  • Respect: +33
  • School: Heatherton Christian College
  • School Grad Year: 2010
Re: ENG1060 Computing
« Reply #1 on: March 27, 2011, 12:39:47 am »
0
I think it requires a bit of time to determine the function needed to perform a specific task..

I've done well in the labs so far because I've been able to spend the extra time...

What are you having trouble with?
2009/2010: Mathematical Methods(non-CAS) ; Business Management | English ; Literature - Physics ; Chemistry - Specialist Mathematics ; MUEP Maths

96.85

2011-2015: Bachelor of Aerospace Engineering and Bachelor of Science, Monash University

2015-____: To infinity and beyond.

darkphoenix

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1564
  • Respect: +3
Re: ENG1060 Computing
« Reply #2 on: March 27, 2011, 12:43:27 am »
-1
Hm yeah it does.

Well im finding it difficult in general, probably because i haven't really revised/gone through slides or listened to lectures properly.

But i don't get how everyone else seems to know what to do..
2009: Accounting
2010: English | Methods (CAS) | Specialist Maths | Chemistry | Chinese SL
2011: Bachelor of Commerce/Engineering @ Monash

taiga

  • Honorary Moderator
  • ATAR Notes Legend
  • *******
  • Posts: 4085
  • Respect: +588
Re: ENG1060 Computing
« Reply #3 on: March 27, 2011, 01:17:54 am »
0
if you're behind go through the lectures online, and read through them and make a concise set of notes. Then do the weekly practise tasks, if you do them you should be fineee.

That said I'm pretty behind on watching the lectures, and havnet done any of the homework. Though I've got 10/10 in both :D
vce: english, methods, spesh, chemistry, physics, geography.

ex admin/mod/partner

2010: Melbourne High School (VCE)
2011 - 2016: Monash University BComm/BEng (Hons)


If you guys have any concerns/suggestions for making ATARNotes a better place, don't hesitate to PM me.

m@tty

  • Victorian
  • ATAR Notes Legend
  • *******
  • Posts: 4324
  • Respect: +33
  • School: Heatherton Christian College
  • School Grad Year: 2010
Re: ENG1060 Computing
« Reply #4 on: March 27, 2011, 04:40:30 pm »
0
IF you do that you should have no problems

That said I'm pretty behind on watching the lectures, and havnet done any of the homework. Though I've got 10/10 in both :D

Same ;)
2009/2010: Mathematical Methods(non-CAS) ; Business Management | English ; Literature - Physics ; Chemistry - Specialist Mathematics ; MUEP Maths

96.85

2011-2015: Bachelor of Aerospace Engineering and Bachelor of Science, Monash University

2015-____: To infinity and beyond.

darkphoenix

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1564
  • Respect: +3
Re: ENG1060 Computing
« Reply #5 on: March 27, 2011, 04:54:13 pm »
0
LOL do we even get homework?
2009: Accounting
2010: English | Methods (CAS) | Specialist Maths | Chemistry | Chinese SL
2011: Bachelor of Commerce/Engineering @ Monash

m@tty

  • Victorian
  • ATAR Notes Legend
  • *******
  • Posts: 4324
  • Respect: +33
  • School: Heatherton Christian College
  • School Grad Year: 2010
Re: ENG1060 Computing
« Reply #6 on: March 27, 2011, 05:00:34 pm »
0
There are "self study exercises" on blackboard. They're essentially extra labs. I think that's what he was referring to.
2009/2010: Mathematical Methods(non-CAS) ; Business Management | English ; Literature - Physics ; Chemistry - Specialist Mathematics ; MUEP Maths

96.85

2011-2015: Bachelor of Aerospace Engineering and Bachelor of Science, Monash University

2015-____: To infinity and beyond.

darkphoenix

  • Victorian
  • Part of the furniture
  • *****
  • Posts: 1564
  • Respect: +3
Re: ENG1060 Computing
« Reply #7 on: March 27, 2011, 05:55:14 pm »
0
Oh ok fair enough.

Far out i cant even get the first question LOL what am i doing wrong?

%Getting user to input number
n = input('Enter number: ');

%Round off number to nearest integer
x = fprintf('Nearest integer is %.0g', n);
if mod(x,2) == 0
    fprintf('x is even');
else
    fprintf('x is odd');
end

2009: Accounting
2010: English | Methods (CAS) | Specialist Maths | Chemistry | Chinese SL
2011: Bachelor of Commerce/Engineering @ Monash

m@tty

  • Victorian
  • ATAR Notes Legend
  • *******
  • Posts: 4324
  • Respect: +33
  • School: Heatherton Christian College
  • School Grad Year: 2010
Re: ENG1060 Computing
« Reply #8 on: March 27, 2011, 06:36:41 pm »
0
That's pretty close.

You need to add "\n" at the end of each fprintf statement to put the next part on a new line.

And, you're meant to round the number, not cull the decimal places (ie, your code would say that the nearest integer to 2.9 is 2 rather than 3)

Also, in the odd/even part, you print "x" rather than the actual rounded number, that needs fixing.


\\---------------------\\


%Getting user to input number
n = input('Enter number: ');

%Round off number to nearest integer
rounded_input = round(n);

%Print result
x = fprintf('Nearest integer is %g\n', rounded_input);

%Determine if odd or even and print
if mod(rounded_input,2) == 0
    fprintf('%g is even\n', rounded_input);
else
    fprintf('%g is odd\n', rounded_input);
end
« Last Edit: March 27, 2011, 06:38:51 pm by m@tty »
2009/2010: Mathematical Methods(non-CAS) ; Business Management | English ; Literature - Physics ; Chemistry - Specialist Mathematics ; MUEP Maths

96.85

2011-2015: Bachelor of Aerospace Engineering and Bachelor of Science, Monash University

2015-____: To infinity and beyond.

sajib_mostofa

  • Victorian
  • Forum Leader
  • ****
  • Posts: 829
  • Respect: +6
Re: ENG1060 Computing
« Reply #9 on: March 27, 2011, 06:54:00 pm »
0
The best way to prepare for this subject is to spend extra time using matlab in the computer labs or at home as m@tty said. I don't think reading slides is going to help too much for this subject as you need to get first hand practice with all the various functions. I'm sure that there are 60-70% with no experience in programming at all( myself included) who might be struggling with it as well. The aim of the labs is rather to help you facilitate your own learning about using matlab in a variety of tasks and recognising where you may have went wrong as well as prepare you for the bigger picture, which is the exam. So hang in there mate and I'm sure you'll be fine  :)

xZero

  • Victorian
  • Forum Leader
  • ****
  • Posts: 898
  • Respect: +68
Re: ENG1060 Computing
« Reply #10 on: March 27, 2011, 09:33:19 pm »
0
Yeh this subject is hard as :S though i achieved 2 10/10 by doing all the tasks at home and just memorise everything you typed. I also find that playing around on MATLAB is more useful than attending the lectures and the PASS session
2009: Chinese SLA
2010: English, Maths method[45,A+ A+ A+], Specialist maths[44,A+,A,A+], Physics[40,A,A+,A+], Psychology Atar:94.75
2011-2015: Bachelor of Aerospace Engineering/Science @ Monash

Methods/Spesh/Physics tuition

m@tty

  • Victorian
  • ATAR Notes Legend
  • *******
  • Posts: 4324
  • Respect: +33
  • School: Heatherton Christian College
  • School Grad Year: 2010
Re: ENG1060 Computing
« Reply #11 on: March 27, 2011, 09:49:59 pm »
0
Yeh this subject is hard as :S though i achieved 2 10/10 by doing all the tasks at home and just memorise everything you typed. I also find that playing around on MATLAB is more useful than attending the lectures and the PASS session

True.

Except, why do you memorise? You don't need to write the code during the labs; I was marked at the start of my Lab last week, so just bring the code you've typed at home.
2009/2010: Mathematical Methods(non-CAS) ; Business Management | English ; Literature - Physics ; Chemistry - Specialist Mathematics ; MUEP Maths

96.85

2011-2015: Bachelor of Aerospace Engineering and Bachelor of Science, Monash University

2015-____: To infinity and beyond.

taiga

  • Honorary Moderator
  • ATAR Notes Legend
  • *******
  • Posts: 4085
  • Respect: +588
Re: ENG1060 Computing
« Reply #12 on: March 27, 2011, 09:53:52 pm »
0
Loll I just bring mine into class, spend 2.5 hours on other work, and then submit it at the end.

I avoid submitting early otherwise the blokes there give you a hard time with plenty of questions and code analysis.
vce: english, methods, spesh, chemistry, physics, geography.

ex admin/mod/partner

2010: Melbourne High School (VCE)
2011 - 2016: Monash University BComm/BEng (Hons)


If you guys have any concerns/suggestions for making ATARNotes a better place, don't hesitate to PM me.

xZero

  • Victorian
  • Forum Leader
  • ****
  • Posts: 898
  • Respect: +68
Re: ENG1060 Computing
« Reply #13 on: March 27, 2011, 09:58:14 pm »
0
Yeh this subject is hard as :S though i achieved 2 10/10 by doing all the tasks at home and just memorise everything you typed. I also find that playing around on MATLAB is more useful than attending the lectures and the PASS session

True.

Except, why do you memorise? You don't need to write the code during the labs; I was marked at the start of my Lab last week, so just bring the code you've typed at home.

Oh what you can bring in the code? Haha thats awesome I'll do that this week >:D
2009: Chinese SLA
2010: English, Maths method[45,A+ A+ A+], Specialist maths[44,A+,A,A+], Physics[40,A,A+,A+], Psychology Atar:94.75
2011-2015: Bachelor of Aerospace Engineering/Science @ Monash

Methods/Spesh/Physics tuition

m@tty

  • Victorian
  • ATAR Notes Legend
  • *******
  • Posts: 4324
  • Respect: +33
  • School: Heatherton Christian College
  • School Grad Year: 2010
Re: ENG1060 Computing
« Reply #14 on: March 27, 2011, 10:01:14 pm »
0
Yeah, they don't care... the labs are just ensuring you get time with MATLAB, practice coding.. Who cares if you do it early.

They marked quite a few at the start in my group last week.

Loll I just bring mine into class, spend 2.5 hours on other work, and then submit it at the end.

I avoid submitting early otherwise the blokes there give you a hard time with plenty of questions and code analysis.

Ah, your class isn't at the end of the day, is it?

Mine is 3-6, so the earlier I submit, the earlier I leave... and I find the guys are fairly lenient; if your code's solid, and you can't answer a question you'll still get 10 (happened to me lol... "why are the peaks at different heights" (the absolute difference of tan graph) ... xD )

Anyone been using/monitoring the discussion part of blackboard?
2009/2010: Mathematical Methods(non-CAS) ; Business Management | English ; Literature - Physics ; Chemistry - Specialist Mathematics ; MUEP Maths

96.85

2011-2015: Bachelor of Aerospace Engineering and Bachelor of Science, Monash University

2015-____: To infinity and beyond.