필터 지우기
필터 지우기

Doubt in plot XY

조회 수: 1 (최근 30일)
Nuno
Nuno 2011년 3월 21일
I am trying to create a graph but I am not able to because it gives me the following error: "Invalid dimensions encountered while propagating dimensions from output port 1 of 'radiacao/XY Graph/Mux' to input port 1 of 'radiacao/XY Graph/sfunxy'. During propagation, we are attempting to unify the dimensions of the multiplexed signal with dimensions {[1x33],[1x33]} to obtain the dimensions 2."
The chart comes from this code:
function [I,V1] = Corrente(m,I0r,ICC)
%#eml
%Variaveis
VT = 0.0257;
VCA = 32.7;
V1 = (0:1:VCA);
I = ICC - I0r.*(2.718.^(V1./(m.*VT))-1);
I want to graph the curve I in function of V1... Why this error?
  댓글 수: 1
Andrew Newell
Andrew Newell 2011년 3월 21일
What command are you using to plot it?

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

답변 (3개)

Andreas Goser
Andreas Goser 2011년 3월 22일
As the answer is depending from the vizualization command, here a general description for such cases:
1. Find the line with the vizualization command in your code 2. Insert the WHOS command right before this line and apply it for all variables used with the vizualization command. 3. Verify the output's dimension with what the documentation specifies
While this is the description for MATLAB, your error points out you are using Simulink. It is unclear how exactly your MATLAB code is embedded into your model. Can you provide the model?

Nuno
Nuno 2011년 3월 22일
I don't understand your answer ... My model is this: http://img543.imageshack.us/img543/2282/modell.png
I try make plot in the workspace but showed up me this error:
>> plot (x,y) ??? Error using ==> plot Data may not have more than 2 dimensions
The value of x double and y double....
Why don´t show plot?

Andreas Goser
Andreas Goser 2011년 3월 23일
1. Your MATLAB Code is within an Embedded MATLAB block - this is important to know
2. You first error message comes from the internals of a "XY Graph" block. You could look under the mask to understand wher it is coming from. The block is expecting scalar inputs (for each time step). It looks the are not. The problem is however the block is not visible in your screenshot.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by