已回答
how to run function for several times with different variables
In your example you do not need more than one variable: a=[5 8 9 11]; for i=1:numel(a) n=a(i)*0.1:a(i)*0.1:a(i); for...

5 years 前 | 0

已回答
Correct evaluation of a logical statement, incorrect result?
It would be helpful to see your code, to find any errors. This should work fine: A=rand(96,6); D=5; B=zeros(96,6); C=3*one...

5 years 前 | 1

| 已接受

已回答
Reshaping an 1x365 matrix with daily observations within a year
You could add some zeros/NaNs at the end of your 365 datapoints, then you should be able to reshape: A=randi(100,365,1); A(e...

5 years 前 | 0

已回答
script for looping function
You just need to get rid of the (t,f1,f2) before the '=' when defining your function. You need to take a look at your loop aswel...

5 years 前 | 0

已回答
GUI handle structure not updating
You can use drawnow to update your graphic elements: function figure1_WindowKeyPressFcn(hObject, eventdata, handles) key = get...

5 years 前 | 0

| 已接受

已回答
How to write a code for an iteration?
f=zeros(100,4); f(1,:)=[1 5 10 15]; for i=2:100 f(i,:)=[f(i-1,1)+f(i-1,2),f(i-1,3)+f(i-1,4),f(i-1,1)-f(i-1,2),f(i-1,3)-f(...

6 years 前 | 0

| 已接受

已回答
Please help me fix the count for the nested for-loop
Your addHexNumber function actually does not work correctly. I think you need to change if bothSum > 16 to if bothSum > ...

6 years 前 | 1

已回答
Indexing a variable value
function density = FindDensity(DataDensity,position) [~,idx]=min(abs(DataDensity(:,1)-position)); density=DataDensity(idx,...

6 years 前 | 0

已回答
Problem with for loop
The problem is that find might return an empty vector and in that case the assignment fails. You could catch this error by che...

6 years 前 | 1

已回答
How can I create a function that inputs a row
You can read about functions here. function res=myfunc(matrix,row) %function [output1,output2]=functionname(input1,input2) ...

6 years 前 | 0

已回答
I need a 'reset' push button to reset all other push buttons
Without seeing your code it is hard to provide an answer. If the enabling works your probably did not set the string property of...

6 years 前 | 1

已回答
How to allow user to retrieve indices for particular value in an array, not the value itself?
In your example you use the _find_ function on only 1 value ( _min()_ returns 1). You were close, _min()_ can actually return...

6 years 前 | 0

| 已接受

已回答
Why do I receive empty outputs in cell arrays after an if statement?
You nested your if statements, hence the last statement if C(j,2) < crvalue{1} will only be executed if the previous sta...

6 years 前 | 2

| 已接受

已回答
how to construct if for vectors with positive and negative?
Small example to understand what is happening: Lets take a vector and check if all values are >0. test=1:5>0 In t...

6 years 前 | 1

| 已接受

已回答
Keep getting this error code: Unable to perform assignment because the indices on the left side are not compatible with the size of the right side.
The left side is a single field in a matrix numericalData(i), this could for example be a number or a string. The right side is ...

6 years 前 | 0

| 已接受

已回答
How can I fix the error "Index exceeds matrix dimension"
bcdof1 is a column vector you need to index bcdof1(i,1) instead of bcdof(1,i) bcdof1=[1;4;34;35;36]; bcdof=zeros(1,2*len...

6 years 前 | 1

| 已接受

已回答
fprintf and for loop
for i=1:10 for j=1:2 fprintf('period %d step %d \nsave\n',i,j) end end

6 years 前 | 0

| 已接受

已回答
Check an array of values if within an upper and lower limit
If you want to operate on arrays you could do it like this: x = 1:10; minVal = 2; maxVal = 6; x(x(x<=maxVal)>=minV...

6 years 前 | 0

| 已接受

已回答
For loop with Else statement
My guess is that you want to set every value in RR to 0 after the cumulative sum reaches 3000. Here is why this does not work...

6 years 前 | 0

已回答
If statement with many logical or.
You are comparing floating point numbers, which will not necessary work: 1-0.4-0.2==0.4 ans = 0 You c...

6 years 前 | 0

| 已接受

已回答
Index in position 1 exceeds array bounds (must not exceed 4079). how to rectify this error
You are passing Hist and testIDs to your cal_AP function. In that function your try to access Hist(tesIDs). Hist has 4079 row...

6 years 前 | 0

| 已接受

已回答
For the code below how would I make it ALWAYS select and set the upper left corner to be 1 always no matter what the n value is (10, 1000, 1000000)?
I am only guessing, but i assume you want nodetype(1,1) to be 1? The easiest way of doing this would be: nodetype(1,1)=1; ...

6 years 前 | 0

已回答
use logical indexing to access multiple lines syntax
Almost there ;) in p you have the row positions: p552r1kmeans=p552r1_tnL(p,1:3)

6 years 前 | 1

已回答
Problem with quiver plot function
You got a typo: Qplot(handles.edit22.String, h.latf, h.lonf, h.uf. h.vf, handles.edit21.String, handles.edit23.String) ...

6 years 前 | 2

| 已接受

已回答
Conditional with string wildcard
You should get a warning that Text1 ='Tree'*; is no valid syntax (the * is a problem). If you want to use * as a wildc...

6 years 前 | 0

已回答
Loop is not working. My while loop is not working. output is initial values here. Can anyone help??
C is not a vector/matrix it is a scalar. C(counter) can not work for any value of counter >1. C(0.1) will not work either.

6 years 前 | 0

| 已接受

已回答
Subscript indices must either be real positive
The error is actually not that straight forward. Many floating point numbers can described 100% accurate in binary form. So your...

6 years 前 | 1

已回答
How are multiple for loops handled by matlab?
This depends on how you nest your loops: for k=1:100 for n=[10,50,70] %this is the inner loop it will be executed 100 t...

6 years 前 | 0

已回答
Changing the matlab seed
You can use rng('shuffle') For more information have a look <https://de.mathworks.com/help/matlab/math/why-do-random-nu...

6 years 前 | 0

加载更多