Info

Questa domanda è chiusa. Riaprila per modificarla o per rispondere.

Help with plotting a function

1 visualizzazione (ultimi 30 giorni)
Brianna Selles
Brianna Selles il 1 Set 2019
Chiuso: MATLAB Answer Bot il 20 Ago 2021
I need to plot the function y = √(sin(x^2)) over the domain [2.75, 3] but when i try entering the code it does not work for me. It tells me "Not enough input arguments". I've tried almost everything to do this problem. Please help. Here is what I have:
x=[2.75, 3]
y=sqrt(sin*(x^2))
plot(x,y)
title = ('This is all the things')
xlabel=('This is the bottom')
ylabel=('This is the side')
  1 Commento
Brianna Selles
Brianna Selles il 1 Set 2019
I used the code but now the table, x and y labels are not populating. Help?

Risposte (1)

madhan ravi
madhan ravi il 1 Set 2019
Modificato: madhan ravi il 1 Set 2019
x=linspace(2.75, 3,1000)
y=sqrt(sin(x.^2)) % have a look here
plot(x,y)
title('This is all the things')
xlabel('This is the bottom')
ylabel('This is the side')
doc linspace
  8 Commenti
madhan ravi
madhan ravi il 1 Set 2019
Thank you sir Walter :)
Brianna Selles
Brianna Selles il 1 Set 2019
Thanks guys!

Questa domanda è chiusa.

Community Treasure Hunt

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

Start Hunting!

Translated by