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...
7年弱 前
解決済み
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:...
回答済み How to compare tables/cells/characters?
Does the following help?
tf = strcmp(s1,s2) compares s1 and s2 and returns 1 (true) if the two are identical and 0 (false) ot...
7年弱 前 | 0
回答済み Plotting a 3D graph, incorrect solution.
The problem is that after exiting the for loops, x and y are both equal to 100. So, they are scalars and cannot be used in surf....
7年弱 前 | 0
| 採用済み
回答済み xlswrite too large imput
I had the same issue and managed to fix it. I was trying to create a file that did not exist in the path. So, I created the file...
7年弱 前 | 1
回答済み I can not create a matrix
Please note that curly brace ({i}) makes a cell array and not a matrix. You have to use square brackets instead: []
So:
...