Tutorial 2 :: Membuat Fungsi pada Matlab

Admin
3
Hallo matlabian, mimin sudah upload videoo cara membuat fungsi pada m-file. Silahkan ditonton di link https://youtu.be/fNaqiw3fpj4.

Oh ya mohon di subscribe, like, ataupun share.
Kalian juga boleh request minta ditutorin tentang MATLAB.

Atau yang lagi butuh solusi proyek MATLAB, dapat diajukan di sini.
Terima kasih :)

Post a Comment

3Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.
  1. bagaimana penyelesaian dari soal berikut:(maksud saya codingnya):
    Buatlah lingkaran berwarna hitam berjari-jari 35 piksel dengan latar belakang putih berukuran 100 x 100 piksel.
    ditunggu jawabannya ya... terima kasih :)

    ReplyDelete
    Replies
    1. coba yg ini :

      iclc
      clear

      dimx = 100 ;
      dimy = 100 ;
      im = zeros(dimx,dimy);
      xc = dimy/2 ;
      yc = dimx/2 ;
      R = 35 ;

      for i = 1 : dimx
      for j = 1 : dimy

      if sqrt(((i-xc)^2) + ((j-yc)^2)) > 35
      im(i,j) = 1 ;
      end

      end
      end

      imshow(im)

      Delete
    2. how to download the source file
      hmamizadeh@razi.tums.ac.ir

      Delete
Post a Comment

Disclaimer : Content provided on this page is for general informational purposes only. We make no representation or warranty of any kind, express or implied, regarding the accuracy, adequacy, validity, reliability, availability or completeness of any information.

#buttons=(Accept !) #days=(20)

Our website uses cookies to enhance your experience. Learn More
Accept !
To Top