unitconv do not work
    7 次查看(过去 30 天)
  
       显示 更早的评论
    
syms x y
u = symunit;
b=70*u.millim;
h=60*u.millim;
t=1*u.millim;
%trave ad C
Ixx=simplify(mom_inerzia_x(b,h,t),4);
Ixx= unitconv(Ixx,u.mm,u.m) 
Ixx =
(2102447/4)*[mm]^4
>> Esercizio_Ordinata_centro_di_taglio
Ixx =
(2102447/4)*[mm]^4
Why function don't convert from millimeter to meter?
回答(2 个)
  madhan ravi
      
      
 2018-11-12
        
      编辑:madhan ravi
      
      
 2018-11-12
  
      It's unitConvert not unitconv
Ixx= unitConvert(Ixx,u.m)
4 个评论
  madhan ravi
      
      
 2018-11-13
				
      编辑:madhan ravi
      
      
 2018-11-13
  
			I am using 2018b and it work fine for me , note : it requires symbolic toolbox
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!