Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Need the function or Equation that solve this kind of questions?

1 Ansicht (letzte 30 Tage)
Dodo
Dodo am 24 Okt. 2020
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
  1 Kommentar
madhan ravi
madhan ravi am 24 Okt. 2020
madhan ravi:
What did you try?
Dodo:
Thanks alot for your reply. I searched and found that piece wise equation can solve it but but prof needs to be plotted the graph by the logical indeing method and don't know how to apply it and so on. becuse Piesce wise made a wrong plotting. Thanks in advance,

Antworten (1)

Star Strider
Star Strider am 24 Okt. 2020
This is not your function, however it illustrates the ‘logical indexing’ approach:
f = @(x) (2-2*x).*(x <= 0) + (2+2*x).*(x>0);
t = linspace(-3, 3);
figure
plot(t, f(t))
grid
ylim([0 max(ylim)])
It is not difficult to figure out how it works. Be inspired by it!
  3 Kommentare
Walter Roberson
Walter Roberson am 25 Okt. 2020
piecewise 2-2*x for x<=0 piecewise 2+2*x for x>0
Star Strider
Star Strider am 25 Okt. 2020
Walter — Thank you!
Dodo — We provide hints for homework assignments, not actual code. If you post the code you have written and are having problems with it, we will help you get it to run. We will not write it for you!

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by