MATLAB.... please help me with these question, i have no idea on how to start on question 3 and 4
http://undergraduate.csse.uwa.edu.au/units/GENG2140/assignments/Assign-2012-1-1.pdf
you've got to write whole matlab program ...
can you give me an idea as to how i cud start writing da code? or if u know of any good online lectures notes dat wud be of help?..... cos this is very new to me :/
do you have any book for matlab?
da lecture notes i have are really bad, so i dont know where i cud build da knowledge for something like dis.... i have a book called applied numerical methods with matlab, it dusnt help much or maybe i dont know where i cud find questions like dese in da book, i've had a good look
2.?
https://www.google.com/#hl=en&sclient=psy-ab&q=lectures+on+matlab+programming&oq=lectures+on+matlab&gs_l=hp.3.1.0i10i30j0i30j0i5l2.698.9327.0.13144.22.17.3.0.0.1.3454.14476.3-2j2j2j1j2j1j2.12.0.les%3B..0.0...1c.zf6iGUBRQJA&pbx=1&bav=on.2,or.r_gc.r_pw.r_cp.r_qf.&fp=4376dff589751a20&biw=1366&bih=643 you can find tons of material and you should get matlab software
oh, 3. and 4. lemme see
@UnkleRhaukus i have done two, but if you know how to do it, den id really like to check my code with urs, dats if you wont mind writing da code.... but i really need help with 3 and 4 at the moment
i have the matlab software... i understand dat i can get many books on matlab,.... but what i really need is books with similar examples or problems... thanks tho @ghazi
im quite new to MATLAB, and i not able to help with these questions yet, i haven't even learnt how to integrate in matlab yet, how did you do 2. ?
function En = moment_of_inertia(n) if n == 0 %The function below is evaluated when n=0. En = 1-1/exp(1); %Calculates the value of n when n=0. else %The function below it is evalutated when n is not equal to zero. En = 1-n*moment_of_inertia(n-1); %Calculates the value of n when it is not equal to zero. end well dats how i started off^
dat integrates da function... dere is more coding for da 3rd part of the question
Join our real-time social learning platform and learn together with your friends!