Feeds
已回答
Why doesn't plot show desired values from my array?
Sorry, I figured it out. plot(5:10, aVals(5:10)
Why doesn't plot show desired values from my array?
Sorry, I figured it out. plot(5:10, aVals(5:10)
12 years 前 | 0
提问
Why doesn't plot show desired values from my array?
Row array aVals(1 : 10) contains pi for each value. plot(aVals(1:10) gives the expected result: <<http://www.isystan...
12 years 前 | 1 个回答 | 0
1
个回答提问
How to structure array to serve as input parameter for function and then display in sprintf?
This question builds on my last one. Consider that I use arrays of X and Y values for two points in order to find the slopes of ...
12 years 前 | 1 个回答 | 0
1
个回答提问
Can't get function to accept array params or return arrays
Consider this function to calculate the slope of a line: function [m] = f_GetSlope(x1, y1, x2, y2) m = (y1 - y2)/(x1 - x...
12 years 前 | 1 个回答 | 0
