boucle for with two variables

Hello
I'm new in matlab and I need help.
i have two variables, the first is called x = [0.45:0.001:0.625] and the second is called y=[0:1200]
i want to multiply the first by the second whatever the step and assign it in another variable called m for plotting.
can you help me plz

 Risposta accettata

Star Strider
Star Strider il 20 Lug 2020
They are (1x176) and (1x1201) respectively, so the only way to multiply them is to create a matrix:
x = [0.45:0.001:0.625];
y = [0:1200];
m = x(:)*y;
The plot is then:
figure
plot(m)
grid
Transposing ‘m’ in the plot call is also an option.

2 Commenti

Hello
Thank you for your impressive response.
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Creating, Deleting, and Querying Graphics Objects in Centro assistenza e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by