Textscan from a text file that contains signs

1 view (last 30 days)
Hello everyone.
I would like to read the number only from this following text file. I am finiding difficulties to write the command.
I would like to keep 2.428E+08, 1.383E+05, 1.335E+05 . . . in an array
< S P R I N G P R O P E R T I E S
<
*PSPG 'KR1' SKLT +- K1 2.428E+08 HDMP 0.10
<
*PSPG 'KS1' SKLT +- K1 1.383E+05 HDMP 0.20
*PSPG 'KS2' SKLT +- K1 1.335E+05 HDMP 0.20
*PSPG 'KS3' SKLT +- K1 1.243E+05 HDMP 0.20
Thank you.

Accepted Answer

Rik
Rik on 8 Jul 2020
Use strspilt to split each line. Then you can check if there are enough elements on that line, select the 6th element and use str2double.
  2 Comments
Quazi Shammas SAYEED
Quazi Shammas SAYEED on 8 Jul 2020
Thank you Rik for your instruction. Can you please tell me, how to each line? before strsplit.
I am very new in programming or Matlab. I am sorry.
Rik
Rik on 8 Jul 2020
How do you read your data from a file? That time is the easiest time to divide your file by line, which makes the rest of the process a lot easier.

Sign in to comment.

More Answers (0)

Categories

Find more on Data Import and Export in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!