Using the colon operator and the transpose operator, create a column vector myvec that has the values -1 to 1 in steps of 0.5
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:2| Question number:11.2
All Answers
total answers (1)
>> rowVec = -1: 0.5: 1; >> rowVec' ans = -1.0000 -0.5000 0 0.5000 1.0000
need an explanation for this answer? contact us directly to get an explanation for this answer