Effacer les filtres
Effacer les filtres

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

4 vues (au cours des 30 derniers jours)
Estee-Naomie Kadima
Estee-Naomie Kadima le 27 Août 2020
Commenté : Star Strider le 27 Août 2020
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)

Réponse acceptée

Star Strider
Star Strider le 27 Août 2020
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.
  2 commentaires
Estee-Naomie Kadima
Estee-Naomie Kadima le 27 Août 2020
Thank you very much!! It worked
Star Strider
Star Strider le 27 Août 2020
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by