I have a problem with unwrap
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Ghazal Hnr
el 12 de Mzo. de 2017
Comentada: Ghazal Hnr
el 12 de Mzo. de 2017
I want to plot phase of a signal with unwrap code but when i run it, matlab shows me this error:
Error using sym/diff (line 36)
The second and third arguments must either be variables or a variable and a nonnegative integer
specifying the number of differentiations.
Error in unwrap>LocalUnwrap (line 85)
dp = diff(p,1,1); % Incremental phase variations
Error in unwrap (line 65)
q(indf,j) = LocalUnwrap(p(indf,j),cutoff);
Error in Q1 (line 40)
unwrap(phase_1)
How can I fix this problem?
0 comentarios
Respuesta aceptada
Walter Roberson
el 12 de Mzo. de 2017
unwrap() is only defined for numeric values, not for symbolic values.
5 comentarios
Walter Roberson
el 12 de Mzo. de 2017
What shows up if you do
n_phase_1 = double(phase_1);
class(n_phase_1)
size(n_phase_1)
plot(n_phase_1)
Más respuestas (0)
Ver también
Categorías
Más información sobre Measurements and Testbenches en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!