How to find the derivative without using a symbolic function in Matlab?

How to Find Vector Length in MATLAB Without Using Any MATLAB Functions?

  • How would I be able to find the length of a vector only using simple arithmetic and loops? For example, I can't use functions like find(), length(), fft(), etc.

  • Answer:

    You should never need a loop in MATLAB to do vector operations. Edit: Use multiplication and transpose to compute the dot product. So for vector length, you could say: v_length = sqrt( v * v' ) The length of a vector is equal to the square-root of the sum of its elements.Unless you were referring to counting the number of entries in a vector?

Bob at Yahoo! Answers Visit the source

Was this solution helpful to you?

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.