Réponse apportée
Issue with Y, Cb and Cr image. Only Y (luma) image looks red, Cb looks green and Cr looks red. But converting the YCbCr image using ycbcr2rgb, give original image
It looks to me like the only issue is in the "Display YCbCr image" region of your script. imshow expects an RGB input matrix. It...

environ un an il y a | 1

| A accepté

Réponse apportée
How to Install Matlab on WSL Ubuntu 18.04
Depending on the specifics of your setup, it should be possible, yes. Setup: I have an Ubuntu 20.04 install (cat /etc/os-releas...

environ un an il y a | 1

Réponse apportée
Plot variable across two dimensions
The basic concept appears to be interleaving all the lines on the same plot. The key to that is hold on, which lets you superimp...

plus d'un an il y a | 1

| A accepté

Réponse apportée
Error when simulating an adaptive control system with an inverse reference model: Derivative is not finite.
The derivative to a transfer function is the input. So the error is indicating that the input to the highlighted block is not fi...

plus d'un an il y a | 1

Réponse apportée
How can I find error part in simulink
Each Inport in a system or subsystem has a number assigned. The error is telling you that all your inports need to be numbered c...

plus d'un an il y a | 0

| A accepté

Réponse apportée
issue with model operating points: when restarting the simulation it immediately stops because the stopping criteria already met
If you want to pause rather than stopping, you can connect the output of the Relational Operator to a Terminator, and set a brea...

plus d'un an il y a | 0

Réponse apportée
Plot 3d plot with different colors depending on the X and Y combination
You're interested in creating a bar chart where you can individually control the color of each bar, correct? If so, you can sta...

plus d'un an il y a | 0

Réponse apportée
how to fix an error:'' error in port widths or dimensions.''
It looks like you're using elementwise multiplication in the Gain blocks. If you're doing matrix math, you have to choose a matr...

plus d'un an il y a | 0

| A accepté

Réponse apportée
How to move a marker on a figure?
There appear to be two problems: 'XData' and 'YData' have to be followed by the actual xdata and ydata for the new point. Sinc...

plus d'un an il y a | 1

| A accepté

Réponse apportée
shading graph using gui
It looks like patch should provide what you need. The examples in the documentation for that function provide some nice examples...

plus d'un an il y a | 0

Réponse apportée
how to Stabilize Analog Read value on simulink?
It looks like you're holding the Running RMS block in reset, based on the switch configuration in your screenshot. If that is th...

plus d'un an il y a | 0

A résolu


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Input...

plus d'un an il y a

A résolu


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displayed ...

plus d'un an il y a

A résolu


Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Examp...

plus d'un an il y a

A résolu


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

plus d'un an il y a

A résolu


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

plus d'un an il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

plus d'un an il y a

Réponse apportée
Simulink Subsystem False Results
It's creating gain blocks for you. But they all have a size of 0 wide/0 tall, so they're invisible. See how Position is defined ...

plus d'un an il y a | 0

| A accepté

Réponse apportée
apply an array of data repeatedly to a signal in simulink
Assuming your inputs are regularly spaced, you should be able to use a Repeating Sequence Stair block. You can specify the updat...

plus d'un an il y a | 1

| A accepté

Réponse apportée
Logartihmic Amplifier in Simulink
If you just want to implement this generically, it shouldn't be hard to build up from the mathematical definition. Divide Vin b...

plus d'un an il y a | 0

| A accepté

Réponse apportée
Half Wave Rectifier Simulink
If you just want a rough model of a half wave rectifier, you can use a Saturation block, from the Simulink/Discontinuities libra...

plus d'un an il y a | 0

| A accepté

Réponse apportée
Is it possible to use the Selenium library, webdriver.Chrome in MATLAB?
When I wanted to do something like this recently, I was able to run the Python file containing the Selenium calls from MATLAB. R...

plus d'un an il y a | 0