필터 지우기
필터 지우기

How can i plot a sine wave using parameters input by user?

조회 수: 4 (최근 30일)
Estee-Naomie Kadima
Estee-Naomie Kadima 2020년 8월 27일
댓글: Star Strider 2020년 8월 27일
clc;
close all;
clear all;
t=0:0.01:10
a= inputdlg
f=0.5;
y= a*sin(2*pi*f*t)
subplot(2,1,1)
plot(t,y);
axis([-10 10 -10 10]);
title('Sine Function');
xlabel('Time axis');
ylabel('Amplitude axis')
When i put a number as 'a' and run the script it produces a sine graph. However i want the script to work when 'a' can be inputted by the user. When i use 'inputdlg' it prompts for me to place a figure however when i do the following shows up in the command line.
Error in Attuntitled2 (line 8)
y= a*sin(2*pi*f*t)

채택된 답변

Star Strider
Star Strider 2020년 8월 27일
I prefer inputdlg, however you need to remembert that the output is a cell array or character vectors.
To enter an amplitude value of 42:
ac = inputdlg('Enter a value for the amplitude ')
a = str2double(ac)
produces:
ac =
1×1 cell array
{'42'}
a =
42
Put semiccolons at the end of the statements to prevent them printing to your Command Window. I did not use them here for demonstration purposes.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Signal Analysis에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by