Answered
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 ago | 0

Answered
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 ago | 1

| accepted

Answered
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 ago | 0

Answered
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 ago | 0

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

5 years ago | 0

| accepted

Answered
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(...

5 years ago | 0

| accepted

Answered
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 > ...

5 years ago | 1

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

5 years ago | 0

Answered
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...

5 years ago | 1

Answered
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) ...

5 years ago | 0

Answered
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...

5 years ago | 1

Answered
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...

5 years ago | 0

| accepted

Answered
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...

5 years ago | 2

| accepted

Answered
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...

5 years ago | 1

| accepted

Answered
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 ...

5 years ago | 0

| accepted

Answered
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...

5 years ago | 1

| accepted

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

5 years ago | 0

| accepted

Answered
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...

5 years ago | 0

| accepted

Answered
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...

5 years ago | 0

Answered
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...

5 years ago | 0

| accepted

Answered
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...

5 years ago | 0

| accepted

Answered
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; ...

5 years ago | 0

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

5 years ago | 1

Answered
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) ...

5 years ago | 2

| accepted

Answered
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...

5 years ago | 0

Answered
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.

5 years ago | 0

| accepted

Answered
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...

5 years ago | 1

Answered
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...

5 years ago | 0

Answered
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...

5 years ago | 0

Load more