how to solve stem problem?

Illustration
Rok mr - 2022-08-01T10:55:21+00:00
Question: how to solve stem problem?

Hi, I would like to make a stem diagram where drop lines are horizontal and not vertical. Even better would be if ML is able to plot horizontal vectors from a baseline of y-axis.   Actually what I'm trying to plot is velocity profile in pipe.

Related Questions

  • how to solve stem problem?
  • Expert Answer

    Profile picture of Neeta Dsouza Neeta Dsouza answered . 2025-11-20

    I suggest you to use quiver function:

     

    y = 0:10;
    u = 25-(y-5).^2;
    quiver(0*y,y,u,0*u)

    Of course you can do it with stem function:

    x = 0:10;
    y = 25-(x-5).^2;
    
    stem(x,y)
    view(90,90)

     


    Not satisfied with the answer ?? ASK NOW

    Get a Free Consultation or a Sample Assignment Review!