A résolu


Sum the 'edge' values of a matrix
Sum the 'edge' values of an input matrix (the values along the perimeter). Example [1 2 3 4 5 6 7 8 9] Output = ...

plus de 3 ans 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 de 3 ans il y a

A répondu
Calculation precision changed in 2020b?
Hi Hiroyuki, If you check (in R2020b): >> X = dot(x,y) - sqrt(sum(x.^2)*sum(y.^2)) ans = 1.776356839400250e-15 whe...

plus de 3 ans il y a | 0

A répondu
What does "-tf inf" stand for in the command system('rtwdemo_secondOrderSystem -tf inf &')
Hi Sylvain, The -tf switch is used to override the stop time that was set during code generation, for example: model -tf n Th...

plus de 3 ans il y a | 2

| A accepté

A répondu
I am getting the error not enough input arguments when I try to execute my optimization function given below using genetic algorithm in the optimization application of matlab
Hello, This error is arising because you need to pass the handle to the function in "Fitness Function" section instead of the f...

plus de 3 ans il y a | 1

A répondu
How can I create a custom excel function using matlab ?
Hi Sarada, You can use Spreadsheet Link to call MATLAB functions from Microsoft Excel. Firstly, check if Spreadsheet Link is in...

plus de 3 ans il y a | 0

A répondu
In my laptop J just installed matlab 2020a but is showing the following issue
Hi Sanjay, The best way to resolve a License Manager Error -9 is by reactivating MATLAB with the activation client. To do this,...

plus de 3 ans il y a | 0

| A accepté

A répondu
Inferred size ('[1 20]') for data 'MyMatrix_ToVector' does not match back propagated size ('[20]') from Simulink.
Hi Sebastian, You can try editing the size of the output of your MATLAB function. To do this, follow these steps: Open the MAT...

plus de 3 ans il y a | 0

A répondu
Neural Network not updating weights after configuration
Hi Lukas, I have tried to implement your neural net with a sample data (bodyfat_dataset) and it seems to run fine for the size ...

plus de 3 ans il y a | 0

A répondu
How to enable plotted data to be highlight when mouse hover over but not diplay coordinate information when clicked
Hi Yunhao, It is my understanding that you would like to remove the coordinates information which is displayed when we click o...

plus de 3 ans il y a | 0

| A accepté

A répondu
Customized Regression output layer
Hi, I tried to implement your network on my end and found two problems. One, when using "mse" as the loss function, it is advis...

plus de 3 ans il y a | 0

A répondu
How to add button to mask which adds another dropdown to the same mask
Hi Daniel, According to my understanding, you want to design an interactive mask dialogue box specifically adding a "popup" or ...

plus de 3 ans il y a | 1

| A accepté

A répondu
How do I programmatically get all variant control labels of a Variant Subsystem when in Label control mode?
Hi Zachary, The list of all the available Variant control labels can be found by selecting the desired Variant subsytem and the...

plus de 3 ans il y a | 0

| A accepté

A répondu
Unwanted white line in the 3d figure
Hi, A similar question has been answered here. I hope this will resolve your issue.

plus de 3 ans il y a | 0

| A accepté

A répondu
How to pass a vector<float> (1D) from C++ into MATLAB for plotting?
Hi Angad, You can use "createArray" with C++ vector iterators as well. Please refer to this link for more details. I have creat...

plus de 3 ans il y a | 0

A répondu
How to transform non image data so that it will be able to train with Matlab CNN ?
Hi Tuong, You can use the "imageInputLayer" to input your data points into your neural network. You can take: inputSize = [4 1...

plus de 3 ans il y a | 0

A répondu
Question for 'Layer Input sizes' in custom neural network layers
Hi Sangmin, It is my understanding that you want to create an intermediate layer which accepts a 2 – by – 1 vector as input. S...

plus de 3 ans il y a | 0

| A accepté

A répondu
Reinforcement Learning: Multiple Unique Discrete Actions
Hi Huzaifa, According to my understanding, you would like to remove the action pairs which have the same values like [1 1],[2 2...

plus de 3 ans il y a | 1

| A accepté

A répondu
Calculating and printing uncertainties of fits after the "normal" display of fit-parameters
Hi Claudius, I would suggest to create a custom display function for this task. I have created a function that I describe below...

plus de 3 ans il y a | 0

| A accepté

A répondu
Model I/O dimensions must agree in feedback(Using struct file to find Robustness in a control system)
Hello Johnathon, The error is due to the incorrect usage of variable "k". According to the video you referred, the correct line...

plus de 3 ans il y a | 0

| A accepté

A répondu
It's simple to implement function block.
Hi, To mimic the while loop you can use the "While iterator subsytem" described here. I have attached my model of the subsytem ...

plus de 3 ans il y a | 0

| A accepté

A répondu
Create an algorithm for perfect matching in bipartite graph
Hi Sepideh, It is my understanding that you want to create an algorithm which gives you the perfect matching decomposition of a...

plus de 3 ans il y a | 0

A résolu


Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...

plus de 3 ans 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 de 3 ans il y a

A répondu
How can I change opts.StartPoint for a custom equation at every loop iteration?
Hi Pinar, It is my understanding that you would like to define custom starting points for your curve - fitting model for differ...

plus de 3 ans il y a | 0

A répondu
Intersection of multiple lines and circle
Hi Tamim, Since the number of location points and circles is low, we can design a brute – force algorithm for this problem. Th...

plus de 3 ans il y a | 0

A répondu
I am using using pdepe to solve a 1D heat diffusion equation. My calling line looks like:
Hi Swayam, The mesh points given by the elements of vectors "xmesh" and "time" are the points where "pdepe" returns the solutio...

plus de 3 ans il y a | 0

| A accepté

A répondu
Integral2 warning: minRectSizePass
Hi Maria, The "integral2" function with the "tiled" method is an adaptive quadrature that transforms the integration region to ...

plus de 3 ans il y a | 0

| A accepté

A répondu
Problem with PDE resolution
Hi, This error is produced because in the function “pdefun”, you have defined the variable “c” twice. In the first declarat...

plus de 3 ans il y a | 0

| A accepté

A répondu
Solving heat equation with source term using pdepe
Hi Nishant, I reckon you have already found the answer here. Sharing the link here so that it comes handy for anyone who has a ...

plus de 3 ans il y a | 0

| A accepté

Charger plus