Filter löschen
Filter löschen

advice on how to type this formula

1 Ansicht (letzte 30 Tage)
Aster
Aster am 28 Okt. 2023
Verschoben: Dyuman Joshi am 16 Dez. 2023
Hi, could I get some guidence on how to type this out, wouldn't it be: x1(t) = 1/2-1/pi*sin(4*pi/t)
  4 Kommentare
Dyuman Joshi
Dyuman Joshi am 1 Nov. 2023
Verschoben: Dyuman Joshi am 16 Dez. 2023
You are, of course, right Walter. However, I am (still) skeptical if that is what exactly OP wants.
We can infer this, but as OP has not specified any information about that, thus I thought of providing this as an alternative.
If OP does not provide any more information, I will move my answer to a comment.
Walter Roberson
Walter Roberson am 1 Nov. 2023
Verschoben: Dyuman Joshi am 16 Dez. 2023
Your answer is probably what they were looking for ;-)

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Walter Roberson
Walter Roberson am 28 Okt. 2023
syms t
x_1(t) = 1/2-1/pi*sin(4*pi*t)
  3 Kommentare
Walter Roberson
Walter Roberson am 28 Okt. 2023
Well, let us try it.
Try #1:
x_1(t) = 1/2-1/pi*sin(4*pi*t)
Unrecognized function or variable 't'.
That fails.
Walter Roberson
Walter Roberson am 28 Okt. 2023
Try #2:
t = 0:.1:1; %some specific numeric t values
x_1(t) = 1/2-1/pi*sin(4*pi*t)
Array indices must be positive integers or logical values.
That fails as well.
Looks like, Yes, you do need syms t in order to write that formula.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by