Respondida
How do I turn off the grid in a polar plot?
It's a shame that it's not easier to do this, but here is a Solution that explains how to do it: <http://www.mathworks.com/sup...

más de 15 años hace | 2

| aceptada

Pregunta


How do I turn off the grid in a polar plot?
For a normal MATLAB plot, I can turn the grid off and on with the |grid| command. x = 1:10; plot(x,sin(x)) grid on ...

más de 15 años hace | 3 respuestas | 2

3

respuestas

Respondida
How to extract leading non-zero digit?
You'll probably need to do some kind of textual manipulation. Here's one way to do it. function y = leadingDigit(x) s = s...

más de 15 años hace | 4