plz send me the answer

x=1:7
n=-3:3
need y[n]=x[2n+3] ?
plz send me the answer " fadi.sam@live.com "

Antworten (5)

Walter Roberson
Walter Roberson am 26 Mär. 2012

0 Stimmen

This is not possible in MATLAB, as MATLAB arrays cannot be indexed at negative numbers or 0, but you want to index y at -3, -2, -1, and 0, along with 1, 2, and 3.

1 Kommentar

fadi rami
fadi rami am 26 Mär. 2012
YES WALTER I MEAN " the value when x=1 is -3 and when x=2 the value is -2 etc , and i need for this shape make scaling and shifting
Geoff
Geoff am 26 Mär. 2012

0 Stimmen

I think you mean this:
x = -3:3;
y = 2 * x + 3;
plot(x, y);

3 Kommentare

fadi rami
fadi rami am 26 Mär. 2012
no man i mean " the value when x=1 is -3 and when x=2 the value is -2 etc , and i need for this shape make scaling and shifting
Geoff
Geoff am 26 Mär. 2012
So you mean:
x = 1:7;
y = -3:3;
Here, y is "the value when x=1 is -3... etc", and you access it like this: y(1)
Geoff
Geoff am 26 Mär. 2012
Alternatively, if you really did mean n = -3:3 and y = 2n + 3, then:
x = 1:7;
n = -3:3;
y = 2*n + 3;
Image Analyst
Image Analyst am 26 Mär. 2012

0 Stimmen

Nourhan
Nourhan am 14 Aug. 2026 um 19:37
Bearbeitet: Nourhan am 14 Aug. 2026 um 20:58

0 Stimmen

MATLAB does not allow negative or zero indices. MATLAB array indexing must start at 1
atta
atta am 15 Aug. 2026 um 18:31
Bearbeitet: atta am 15 Aug. 2026 um 18:33

0 Stimmen

y[n]=x[2n+3]
with x=[1,2,3,4,5,6,7] and n=3:3.

This question is locked.

Kategorien

Mehr zu Fractals finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 26 Mär. 2012

Locked:

am 16 Aug. 2026 um 12:05

Community Treasure Hunt

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

Start Hunting!

Translated by