How to define line colour in zplane plotting
이전 댓글 표시
I have used the command; zplane to plot a graph and i wanted to change the line colour but still i am struggling...... if someone know how to do this please let me know!!!
Thank you, Ishan
채택된 답변
추가 답변 (4개)
Walter Roberson
2011년 4월 6일
[hz,hp,ht] = zplane(...);
set(findobj(ht, 'Type', 'line'), 'Color', NewColor);
댓글 수: 2
Babarandage Perera
2011년 4월 21일
Walter Roberson
2011년 4월 21일
편집: Walter Roberson
2020년 9월 16일
figure(2) % Z-plane poles and zeors
[hz1, hp1, ht1] = zplane(a,b); % Plot zeros and poles when coefficients are unquantized
grid on;% turn on grids
hold on;% Plot the second graph in same figure
[hz2, hp2, ht2] = zplane(H_Ka,H_Kb);%Plot zeros and poles when coefficients unquantized
hold off;
set(findobj(ht1, 'Type', 'line'), 'Color', 'r'));
set(findobj(ht2, 'Type', 'line'), 'Color', 'g'));
Matt Fig
2011년 4월 21일
0 개 추천
Andrei Prikhod'ko
2016년 10월 22일
0 개 추천
Walter forever!!!
Hansamal Dharmananda
2020년 9월 16일
clc; clear;close all;
%%
%%%%%%%% a) b) %%%%%%%%%
B=[1 2 -1]; %numerator coeffients
A=[1 -1 0.5]; %denominator coeffients
Zeros=roots(B); %numerator
Poles=roots(A); %denominator
[hz1, hp1, ht1] = zplane(B,A);%with the unit circle
set(findobj(hz1, 'Type', 'line'), 'Color', 'b');
set(findobj(hp1, 'Type', 'line'), 'Color', 'g');
set(findobj(ht1, 'Type', 'line'), 'Color', 'r');
% H = tf(B,A); %set the transferfunction
% pzmap(H) % without the unit circle
title('Pole-zero map')
axis([-3 1.2 -1.2 1.2]);
카테고리
도움말 센터 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!