Can you help me to do this?
    조회 수: 3 (최근 30일)
  
       이전 댓글 표시
    
clc
close all
clear all
syms T2 T3 T4 x4 x3 ;
x2 = [T2 ;T3 ;T4];
T1 = 303;
k = 10;
L = 3;
h = 10;
figure(1)
for x3 = [1 0.1 0.01 0.001]
    x1 = [-2 1 0;1 -2 1;0 -1 1+x3];
 equ = x2 == inv(x1)*[-100*(x3)^2-303; -100*(x3)^2; 100*(x3)^2+303*x3];
 disp(equ)
 plot(x3,equ,'b')
 hold on
end

댓글 수: 1
  Rik
      
      
 2020년 2월 18일
				This time I edited your question for you. Next time, please use the tools explained on this page to make your question more readable.
답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

