units(varargin)

버전 1.0.0.0 (6.49 KB) 작성자: Nikolay
Consistent conversion of physical units
다운로드 수: 277
업데이트 날짜: 2016/1/17

라이선스 보기

input: x1 - initial data (scalar, vector, matrix)
s1 - string with initial units ('m/s','ohm*m','kJ/cm^3' etc)
s2 - string with target units
output: x2 - converted data
when output is empty, result is printed in command window.
feel free to expand list of available units by changing 'units' variable, where:
1st column: unit symbol
2nd column: 'MLTQ' based dimensions
3rd column: conversion factor
Symbolic Math Toolbox is required.
Examples:
units(1,'kN/mm^2','MPa') -> 1 kN/mm^2 = 1000 MPa
units(5*50,'mA^2*ohm','mW') -> 250 mA^2*ohm = 0.25 mW
units([1 10 100],'Mega*eV','micro*erg') -> 1 Mega*eV = 1.60218 micro*erg
10 Mega*eV = 16.0218 micro*erg
100 Mega*eV = 160.218 micro*erg

인용 양식

Nikolay (2024). units(varargin) (https://www.mathworks.com/matlabcentral/fileexchange/54658-units-varargin), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2014b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Physics에 대해 자세히 알아보기
태그 태그 추가
도움

받음: units.m

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

cover picture
new input combinations are possible:

units(s1,s2) equivalent to units(1,s1,s2)
units(x1,s1) defines s2 as closest possible si-unit: s1='km/hour' -> s2='m/s', s1='kN*km/s' -> s2='J', etc.
units(s1) equivalent to units(1,s1)