plotting in for loop

조회 수: 1 (최근 30일)
abdalrhman hassan
abdalrhman hassan 2016년 4월 21일
댓글: abdalrhman hassan 2016년 4월 21일
hello, i'm tring to plot h with Q but the graph shows empty and when add hold on it apears points not continuous curve
clc;clear; a=1;t1=100;t2=20;l=.01;k=1; for h=1:1:100 syms ts q=-(a*h*(ts-t2))+(k*a*(t1-ts)/l); Ts=solve(q); Q=a*h*(Ts-t2); plot(h,Q) axis([1,100,50,4000]) grid on end

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2016년 4월 21일
편집: Azzi Abdelmalek 2016년 4월 21일
clc;clear;
a=1;t1=100;t2=20;l=.01;k=1;
syms ts
hh=1:100;
for h=hh
q=-(a*h*(ts-t2))+(k*a*(t1-ts)/l);
Ts=solve(q);
Q(h)=a*h*(Ts-t2);
end
plot(hh,double(Q))
axis([1,100,50,4000])
grid on
  댓글 수: 1
abdalrhman hassan
abdalrhman hassan 2016년 4월 21일
Thank you That's was helpful but can you explain what you did please

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Particle & Nuclear Physics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by