plotting a graph for a multi-junction solar cell model

after simulating the model structured in the simulink, the values i recieved in the work space are of double array of 20*1000, i tried to plot my graph but the figure produced is blank. how can i solve this?

5 Comments

@RODNEY ARERI, We cannot check your graph unless the data and plotting code are provided.
Hi, voltage and P_out are arrays. Something as shown below.
Do you want to extract the data from the voltage array?
x = rand(2, 5)
x = 2×5
0.5115 0.1806 0.2568 0.0824 0.6734 0.1379 0.8130 0.6245 0.4658 0.6719
y = rand(2, 5)
y = 2×5
0.0301 0.2538 0.3374 0.7875 0.5353 0.1200 0.5300 0.6860 0.5696 0.2801
plot(x, y)
thank you for the idea, let me try this immediately

Sign in to comment.

Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Products

Release

R2021b

Asked:

on 5 Apr 2023

Commented:

on 5 Apr 2023

Community Treasure Hunt

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

Start Hunting!