textscan error - name-value pair arguments must come in pairs

Hi,
I keep getting the following error:
Error using textscan
Name-value pair arguments must come in pairs.
fid = fopen(char(name),'r');
disp(name);
line = fgetl(fid);
line = fgetl(fid);
EID = sscanf(line,'%s');
line = fgetl(fid);
line = fgetl(fid);
A = textscan(line,'%s','%\t');
FlEx = str2num(cell2mat(A{1,1}(5)))
line =
Fluorescence excitation wavelength (nm): 405
Does someone know how to solve this problem?

3 commentaires

Julian Hapke
Julian Hapke le 20 Juin 2017
Modifié(e) : Julian Hapke le 20 Juin 2017
as the error says, you are not giving name/value pairs. have a look at the documentation of textscan, to see what the function expects. To assist you further, we will need to know that you want to get from your string in "line". I guess the wavelength as integer?
Ihiertje
Ihiertje le 21 Juin 2017
Modifié(e) : Ihiertje le 21 Juin 2017
Hi Julian,
I looked at the documentation of textscan, but it did not help me in solving this problem. A textfile is generated with all my measurements and some parameters. And yes, I want to extract the wavelength (405) from the line. However, I do not understand why it is not possible with this code.
It isn't possible for the reason the error message says. There is no syntax of textscan that matches yours.
At a guess you maybe meant:
A = textscan(line,'%s', 'Delimiter', '%\t');

Connectez-vous pour commenter.

 Réponse acceptée

This line fails:
A = textscan(line,'%s','%\t');
What is the prupose of the two parameters? You did not explain them and they are not correct, therefore we cannot know the intention of the code.
The usage of textscan is explained exhaustively in the documentation:
doc textscan
If you do not understand some parts, please ask a specific question. Perhaps you want:
A = textscan(line, '%s', 'CommentStyle', '%', 'Delimiter', '\t');
But this is a guess only.

2 commentaires

The idea is to give every word/number his own row. Then I can easily define which row I need for further calculation.
Jan
Jan le 21 Juin 2017
Modifié(e) : Jan le 21 Juin 2017
@Iris: I do not see, how this explains the purpose of the argument '%\t'. As the error message says, this string is not accepted, because you need a Name-Value pair. I guessed that the '%' might be meant as comment character and the '\t' as separator.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Large Files and Big Data dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by