Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so:
x = [1 2 3 4]
Commas are optional, s...
約9年 前
解決済み
Times 2 - START HERE
Try out this test problem first.
Given the variable x as your input, multiply it by two and put the result in y.
Examples:...
約9年 前
回答済み Fix parameters using fit function
I think I understand what you're trying to do. Your function is this thing:
|gaub = @(a,b,c1,c2,t1,w1,w2,x,y) ...%bunch of f...
回答済み Matlab - Sort into deciles each column
I think a way to do this is to use the |ecdf| command (http://www.mathworks.com/help/stats/ecdf.html)
* If you take your data...
約9年 前 | 0
| 採用済み
回答済み getting a matrix from Excel data
There are a couple of ways.
* The simplest way, if you're new to Matlab, is use the the file import tool. It's under the Fil...
約9年 前 | 0
回答済み Creating a dynamical plot with a for loop
I think you could try just make a function, calling |number_func(m)| which nests the code above.
Then, evaluate |number_func...