How to save a data when something happens
Show older comments
Hello everybody, I am receiving 100 symbols, with values starting from 0 and go to 1. The scenario is like this.
for i=1:100
if Symbolvalue >= 0.5
Nuberofsymbolvalue=i;
end;
end;
I need to save the the first i in which I go above 0.5
Thanks in advance.
Answers (3)
Image Analyst
on 17 Nov 2013
Edited: Image Analyst
on 17 Nov 2013
if symbolValue > 0.51
savedSymbolValue = symbolValue;
% Optionally save to a mat file
save(yourMatFileName, 'savedSymbolValue');
end
5 Comments
mahdi safarzadeh
on 17 Nov 2013
mahdi safarzadeh
on 17 Nov 2013
Image Analyst
on 17 Nov 2013
OK, you didn't have any explanation at first so I just went with what I could. Now that I see what you're after I recommend:
Nuberofsymbolvalue = find(Symbolvalue > 0.5, 1, 'first'); % Save the index
No loop over i is needed. If you wanted to find out the value at that index, do this:
theSymbolValue = Symbolvalue(Nuberofsymbolvalue);
though you might want to use Number instead of Nuber (unless Nuber means Number in your language)
mahdi safarzadeh
on 18 Nov 2013
Image Analyst
on 18 Nov 2013
Please mark the best answer as "Accepted" if you're done with this topic. Thanks.
Umair Nadeem
on 17 Nov 2013
Edited: Umair Nadeem
on 17 Nov 2013
you can use this
index = 1;
for i = 1:100
if SymbolValue >= 0.5
NumberofSymbolValue[index] = i;
index += 1;
end
end
Valueoffirst_i = NumberofSymbolValue[1];
The first value in array NumberofSymbolValue will show the first i
Hope it helps
4 Comments
Walter Roberson
on 17 Nov 2013
MATLAB does not use { and } for grouping: it uses "end" to mark the end of a block.
mahdi safarzadeh
on 17 Nov 2013
Image Analyst
on 17 Nov 2013
Edited: Image Analyst
on 17 Nov 2013
How did it work? Are you programming in C? MATLAB doesn't use [] around array indexes and doesn't have the += operator. Plus, his solution could be done with a non-looping simple call to find like Walter and my solution.
allHighSymbolIndexes = find(Symbolvalue >= 0.5)
mahdi safarzadeh
on 18 Nov 2013
Walter Roberson
on 17 Nov 2013
find(Symbolvalue >= 0.5, 1, 'first')
2 Comments
mahdi safarzadeh
on 17 Nov 2013
Image Analyst
on 17 Nov 2013
Just assign the output to something:
firstHighSymbolIndex = find(Symbolvalue >= 0.5, 1, 'first')
theFirstHighSymbol = Symbolvalue(firstHighSymbolIndex);
We don't know why it didn't work because you didn't show your code. The code you used (a for loop) is not vectorized and not as MATLAB-ish but is probably still fast enough.
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!