About 1,130,000 results
Open links in new tab
  1. matlab - Understanding semilogy function - Stack Overflow

    Nov 25, 2016 · I'm trying to understand semilogy function which is normally used for plotting data in MATLAB. As the definition says in MATLAB help section: semilogy(Y) creates a plot using a …

  2. matlab - semilog plots with hold on - Stack Overflow

    Feb 28, 2012 · If I try to plot multiple plots with a logarithmic axis, the log scale is disabled. If I remove the hold on the log scale is enabled, but I can only plot a single plot. figure(1); clf x = …

  3. semilogy, loglog do not work in order to set the y axis on a ...

    Sep 12, 2021 · The problem is with figure; hold on; that creates a linear figure, and you're adding subsequent plots to the linear axes. You should set the axis to log explicitly. Following on from …

  4. Plotting straight line on semilog plot with matplotlib

    Dec 11, 2012 · Okay, just gonna answer the question with what I've figured out so far. In order to plot a straight line on a semilog, there are two main methods. If you have a list of x values and …

  5. Using errorbar () with semilogy () in MATLAB? - Stack Overflow

    Apr 19, 2014 · Using errorbar () with semilogy () in MATLAB? Asked 15 years, 4 months ago Modified 11 years, 8 months ago Viewed 19k times

  6. python - Plot logarithmic axes - Stack Overflow

    I want to plot a graph with one logarithmic axis using matplotlib. Sample program: import matplotlib.pyplot as plt a = [pow(10, i) for i in range(10)] # exponential fig = plt.figure() ax = fig.

  7. Difference between the semilog function and plot in Matlab?

    Aug 19, 2018 · I don't understand when to use the semilogx or semilogy function in Matlab and when to use the plot function,for example for displaying the spectrum of a signal

  8. plotting two axes semilog matlab - Stack Overflow

    May 17, 2016 · Well, a quick Google search of the terms that you provide in your question (i.e., 'semilogy' and 'plotting two axes matlab') would have shown you what I'm showing you.

  9. python - How to get the minor axis grid on the semilogy plot in ...

    Apr 27, 2020 · How to get the minor axis grid on the semilogy plot in matplotlib? Asked 5 years, 8 months ago Modified 5 years, 8 months ago Viewed 1k times

  10. python - How to properly use semilogy? - Stack Overflow

    How to properly use semilogy? Asked 7 years, 8 months ago Modified 7 years, 8 months ago Viewed 278 times