Octave Tutorial #6: Scatter and Line Plotting for Absolute Beginners

Поділитися
Вставка
  • Опубліковано 5 вер 2024

КОМЕНТАРІ • 43

  • @Robson-dh3un
    @Robson-dh3un 3 роки тому +8

    You're saving lives Sr. !
    Thank you !

  • @georgosal8432
    @georgosal8432 2 роки тому +3

    Thank you my friend .....You helped me with an important project RESPECT MY DUDE !!!!!!!!!!!!!!!

  • @WreckisituS
    @WreckisituS 3 роки тому +9

    What an awesome video. I wasn't sure about it at first but definitely the best video I have seen on Octave.

  • @user-hn4dg6gq2e
    @user-hn4dg6gq2e 2 роки тому +3

    Спасибо большое за ваши уроки!!!

  • @RafaParkoureiro
    @RafaParkoureiro 3 роки тому +3

    Very thanks! have a physics test tomorrow need to use this shaYT

    • @mr.stemedutv5514
      @mr.stemedutv5514  3 роки тому

      Good luck!! Please let me know if you need me to make any other tutorial video.

  • @felipealexandre9313
    @felipealexandre9313 3 роки тому +3

    Thank you Mr. This video was very helpful to me

  • @joaopedrolourencoaffonso2168
    @joaopedrolourencoaffonso2168 3 роки тому +3

    THANKS! VERY USEFUL!

  • @instantshamim
    @instantshamim 3 роки тому +2

    great tutorial easy to understand and follow instructions...

  • @mr.stemedutv5514
    @mr.stemedutv5514  3 роки тому +6

    Hope this tutorial video is useful for you who would like to learn Matlab and GNU Octave, and please let me know if you have any questions and comments!

    • @allison2025
      @allison2025 3 роки тому +1

      Morning Sir. May I know how can I find the multiple intersection points from the graph I have plotted?

  • @arashmidnahal6166
    @arashmidnahal6166 3 роки тому +2

    Very helpful! Thank you.

  • @masoncamera273
    @masoncamera273 2 роки тому +1

    Great tutorial

  • @JukkritKluabwang
    @JukkritKluabwang 3 роки тому +2

    Good tutorial

  • @tomyddd
    @tomyddd 2 роки тому +1

    thanks a lot dude:)

  • @fayefarahmand3375
    @fayefarahmand3375 Місяць тому

    Why the tutorials in the play list are not in order?! It starts with tutorial #2. Also, where is tutorial 16?

  • @apostolis866
    @apostolis866 3 роки тому +2

    Hi , Season greetings! I find your videos very useful. I am looking for a way to display (plot) a function and stem at the same graph window. How can I do that?

    • @mr.stemedutv5514
      @mr.stemedutv5514  3 роки тому +3

      Why don't you try this script? Hope this helps.
      >> x1=linspace(0,2*pi);
      >> y1=sin(x1);
      >> plot(x1,y1)
      >> x2=linspace(0,2*pi);
      >> y2=cos(x2);
      >> hold on
      >> stem(x2,y2)

    • @apostolis866
      @apostolis866 3 роки тому +2

      @@mr.stemedutv5514 thanks a lot! The command 'hold on' did the trick. brgds.

  • @nebuladus7850
    @nebuladus7850 3 роки тому +1

    Happy Holidays💚💥🙏💥❤

  • @pauldirac6243
    @pauldirac6243 Рік тому

    Are you actually "docking" the figure in this video. Whereas I can dock a figure to the main window on MATLAB, I haven't been able to find a way to do it in Octave. Is there a way?

  • @avagosiewski2018
    @avagosiewski2018 3 роки тому

    How to shadowed the area above 2 intercepted lines?

  • @liutom8220
    @liutom8220 2 роки тому

    Hello, i want to know which version your Octave is? Mine is Octave 3.8.0 and it operates differently from yours.

    • @mr.stemedutv5514
      @mr.stemedutv5514  2 роки тому

      I was using 6.3.0 at the time of recording. However, the latest version is 7.1.0.

  • @franciscomiranda3239
    @franciscomiranda3239 3 роки тому

    How to read a csv files and image import??

  • @franciscomiranda3239
    @franciscomiranda3239 3 роки тому

    Simulation and predictors

  • @Melcor2304
    @Melcor2304 3 роки тому

    Can you explain about the set() command, and specifically about gca?

    • @mr.stemedutv5514
      @mr.stemedutv5514  3 роки тому

      set function is to handle figure property. See the details here. octave.sourceforge.io/octave/function/set.html. gca is the handling id to handle currently active figure. Hope this helps.

    • @rowifi
      @rowifi 3 роки тому

      @@mr.stemedutv5514 I didn't see any reference to 'gca' in that link. What I found elsewhere is gca()... used with parentheses. However your example had none. Suddenly from following the tutorial you lost me at that point. You should pause to explain something like gca as you introduce it otherwise its a stumbling block.. especially for absolute beginners.

  • @dianaperez4368
    @dianaperez4368 2 роки тому

    how to make Y-baseline?

  • @Melcor2304
    @Melcor2304 3 роки тому

    Hi, can you paste the codes into the gnu octave editor and run it from there?

    • @mr.stemedutv5514
      @mr.stemedutv5514  3 роки тому

      Yes, I will do in next video. Thx for your comment!

  • @prathameshbhosale31
    @prathameshbhosale31 3 роки тому

    How to shift the wave in y or X direction

    • @mr.stemedutv5514
      @mr.stemedutv5514  3 роки тому +1

      I think you can try, t_d = pi; t = linspace(0,pi); y=sin(t-t_d); plot(t,y); Hope this helps.

  • @Paull520
    @Paull520 2 роки тому

    how do i make the axis have an increment of 0.2

    • @mr.stemedutv5514
      @mr.stemedutv5514  2 роки тому +1

      I think you can watch at 13:25 to customize the ticks. Hope this helps.

    • @Paull520
      @Paull520 2 роки тому

      @@mr.stemedutv5514 thanks