how to plot a 2d plot colored map?

조회 수: 1 (최근 30일)
ikram zdeg
ikram zdeg 2019년 12월 24일
댓글: Walter Roberson 2020년 1월 1일
Hello
I am trying to creat a 2d plot colored map, I created two for loops for x=vds and y=vgs, and I calculat z=Ids. but all I got is the last calculated value. thank you

답변 (3개)

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 12월 25일
편집: KALYAN ACHARJYA 2019년 12월 25일
Yes,
for vgs=1:1:2
for vds=1:1:2
%....
end
end
As you assigned input gate voltage (vgs) and output drain voltage (vds) in the for loop assignment. During execution it assign a single value only, like 1 or 2, when the loop execution completed it rflects with last value.
See the following example
>> vgs=1:1:2;
>> disp(vgs)
1 2
In for loop
for vgs=1:1:2
%code
end
#Result
>> disp(vgs)
2
Please go through Matlab Basics

ikram zdeg
ikram zdeg 2019년 12월 31일
thank you for your reply.
so I remove For loops. but when I did it, I get another problem of matrix dimensions must agree.question mat1.PNG
  댓글 수: 1
Image Analyst
Image Analyst 2019년 12월 31일
편집: Image Analyst 2019년 12월 31일
What is the size of all the variables on that line? Are any of them vectors? Are all vectors the same length? Are any higher dimensional arrays? Are they all the same size also? If they're arrays or vectors you will have to use .* instead of * if you want element-by-element multiplication rather than matrix multiplication.

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


ikram zdeg
ikram zdeg 2020년 1월 1일
thank you for your comment, I used .* instead of * and it works without error. but now my first problem isn't solve it yet after deleting For loops.matlab q2.PNG
  댓글 수: 1
Walter Roberson
Walter Roberson 2020년 1월 1일
Use ./ instead of / in each case.

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

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by