Doubt in plot XY
1 次查看(过去 30 天)
显示 更早的评论
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?
回答(3 个)
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?
0 个评论
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Two y-axis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!