Matlab: setting number of Significant Figures?
-
I have this code at the end of my Matlab program which outputs my Resultant Moment in Cartesian Vector Notation: disp(['Resultant Moment: ' num2str(Moment(1,1)) 'i + ' num2str(Moment(1,2)) 'j + ' num2str(Moment(1,3)) 'k N m']) The only other requirement for my program is that my outputted values must be to 3 significant figures. I've searched on the internet but can't find something specific that allows me to set the number of significant figures to 3. How do I output my result in 3 sig figs?
-
Answer:
Check this function out! [strOut] = sigfig(num, nSigFig, dummy) Rounds number to nSigFig number of significant figures and outputs a string Dummy in 3rd argument to have padded zeros ex: sigfig(3.15, 2) gives "3.2" sigfig(3.75, 2, []) gives "3.8e+0" try this ----> sigfig(num2str(Moment(1,1),3) and same for the other ones hope this helps!
Scott at Yahoo! Answers Visit the source
Related Q & A:
- Is the length of a resume significant?Best solution by Yahoo! Answers
- How can I learn how to do stick figures or animated stuff online free?Best solution by Yahoo! Answers
- Why is the chrysanthemum significant to the French?Best solution by answers.yahoo.com
- How significant is the 1986 EDSA Revolution?Best solution by Yahoo! Answers
- What are significant figures in chemistry?Best solution by ChaCha
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.