The code is correct, however I keep getting this error: Invalid color, marker, or line style.

30 次查看(过去 30 天)
% Parameters
f = 10; % Frequency in Hz
a = 1;
fs = 100; % Sampling rate in Hz
fst = 1; % Sampling time in seconds
ts = 1/100;
% Time axis
time = 0:ts:1;
% Complex sine wave
s = a* exp(j *2 * pi* f* t);
% Real and imaginary parts
real_s = real(s);
imag_s = imag(s);
% Plot
figure;
plot(t, real_s, 'r.*', t, imag_s, 'b-*');
xlabel('Time (s)');
ylabel('Amplitude');
title('10 Hz Signal Time-Domain Graph');
  4 个评论

请先登录,再进行评论。

采纳的回答

Fangjun Jiang
Fangjun Jiang 2024-4-12
编辑:Fangjun Jiang 2024-4-12
See the possible marker symbol and line symbol
help plot
Various line types, plot symbols and colors may be obtained with
PLOT(X,Y,S) where S is a character string made from one element
from any or all the following 3 columns:
b blue . point - solid
g green o circle : dotted
r red x x-mark -. dashdot
c cyan + plus -- dashed
m magenta * star (none) no line
y yellow s square
k black d diamond
w white v triangle (down)
^ triangle (up)
< triangle (left)
> triangle (right)
p pentagram
h hexagram
For example, PLOT(X,Y,'c+:') plots a cyan dotted line with a plus
at each data point; PLOT(X,Y,'bd') plots blue diamond at each data
point but does not draw any line.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

标签

产品


版本

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by