Changing a string to a number

I have a table that contains both numerical values as well as text. I would like to replace the string 'N/A' to the number 0 in the table.
Thanks for helping out a true beginner.

Answers (1)

A={1 2 'N/A';3 'B' 5;'N/A' 0 0} %Example
A(strcmp(A,'N/A'))={0}

2 Comments

Thanks, this got me part of the way there, but it doesn't work for tables.
Please post an example

Sign in to comment.

Categories

Asked:

on 5 Feb 2014

Commented:

on 6 Feb 2014

Community Treasure Hunt

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

Start Hunting!