Does anybody know how to plot this figure?
조회 수: 3 (최근 30일)
이전 댓글 표시
I want to plot the eigenvalue trajectory when one of the system parameters is changed. I obtained a Matrix where each column represents the eigenvalues for a different value of K_q (check figure please). How can I proceed?

댓글 수: 0
채택된 답변
Image Analyst
2018년 8월 23일
You can use plot(). Just plot each marker one at a time with the proper color
markerColor = [....3 numbers ]; % Whatever color you want...
plot(x, y, '.', 'MarkerSize', 20, 'Color', markerColor);
hold on;
추가 답변 (0개)
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!