Two basic MATLAB problems help

1 visualización (últimos 30 días)
Paul
Paul el 26 de Sept. de 2013
Respondida: Jan el 27 de Sept. de 2013
Hi, I'm a student studying engineering and I have my first exam tomorrow on MatLab. I'm going through some practice problems and ran into two that I don't understand, I posted them below and was wondering if anyone could help me out! Thanks
6) Assume that the function *diff* does not exist. Write your own expression(s) to accomplish the same thing for a vector.
7) Find expressions that will evaluate the function f of two variables x and y:
f(x,y) = 3*x - y
where x ranges from 1 to 2 and y ranges from 1 to 5.
  3 comentarios
Walter Roberson
Walter Roberson el 27 de Sept. de 2013
Editada: Walter Roberson el 27 de Sept. de 2013
#6, diff() can be done without any loop.
#7 can be done without any loop and without any meshgrid (or ndgrid. or repmat)
Jan
Jan el 27 de Sept. de 2013
Editada: Jan el 27 de Sept. de 2013
These problems are not complicated. So I wish you good luck for your first exam tomorrow.

Iniciar sesión para comentar.

Respuestas (2)

Image Analyst
Image Analyst el 27 de Sept. de 2013
Hint: type out vec(1:end-1) and vec(2:end) and see what that shows.

Jan
Jan el 27 de Sept. de 2013
#7: When x ranges from 1 to 2 only, you can write down the equation for x=1 and x=2 manually. If you define y=1:5, the work is done already.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by