What do these different colors of stem plot indicates?
조회 수: 1 (최근 30일)
이전 댓글 표시
This is the stem plot for a complex value matrix of size 512x40. What does these different coluors indicates ?
How to unayse this stem diagrams?
What does the spacing of stem lines indicates ?
![test.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/248158/test.png)
댓글 수: 1
Muhammad Usman
2019년 11월 14일
I hope you can get answers from the given below code.
clear all;close all; clc
fig = figure;
x = linspace(1,3);
y = sin(x);
vectors = [complex(x, y)];
stem(real(vectors),imag(vectors),'Color',[1 0 0])
hold on;
답변 (1개)
Walter Roberson
2019년 11월 14일
complex value matrix of size 512x40
stem() applied to real() and imag() of that is going to create 40 different stem plots. The colors of those plots are chosen automatically if you do not use the Color parameter.
참고 항목
카테고리
Help Center 및 File Exchange에서 Line Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!