Str2double gives NAN

8 views (last 30 days)
Doli Swey
Doli Swey on 17 Oct 2020
Commented: Ameer Hamza on 17 Oct 2020
Hi,
I would like to do this with the attached string array.
CombinedStim(:,2)==k
It is impossible that CombinedStim is string, whereas k is a double.
I tried to use str2double and got NAN values because the first column contains strings, whereas second column is numbers.
Then i try regexp, however I was not succesfull again.
Is there any way I can make this work?
Thank you

Accepted Answer

Ameer Hamza
Ameer Hamza on 17 Oct 2020
Edited: Ameer Hamza on 17 Oct 2020
What about only converting second column to double
str2double(CombinedStim(:,2)) == k
Or using num2str and then use strcmp()
strcmp(CombinedStim(:,2), num2str(2))
  3 Comments
Doli Swey
Doli Swey on 17 Oct 2020
thank you
Ameer Hamza
Ameer Hamza on 17 Oct 2020
I am glad to be of help!
You can start a new question of there is some other problem unrelated to current question.

Sign in to comment.

More Answers (0)

Categories

Find more on Characters and Strings 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!