Ayush
MathWorks
Followers: 0 Following: 0
Feeds
已回答
Multiple Input Multiple Output Gaussian Regression Model
Hi @hanqiu bao, Yes, MATLAB provides a function called fitgmdist that can be used to create a Multiple Input Multiple Output (M...
Multiple Input Multiple Output Gaussian Regression Model
Hi @hanqiu bao, Yes, MATLAB provides a function called fitgmdist that can be used to create a Multiple Input Multiple Output (M...
1 year 前 | 0
已回答
How to add an element to an entire array?
Hi @Ada, One thing you can try is storing elements of array in form of string and then you can add apostrophe to them.Then whe...
How to add an element to an entire array?
Hi @Ada, One thing you can try is storing elements of array in form of string and then you can add apostrophe to them.Then whe...
1 year 前 | 0
| 已接受
已回答
What are all the ways to use name-value arguments in MATLAB code?
Hi @Nitu, There are various ways for implementing name-value arguments. Some of the ways are as follows: options argument fu...
What are all the ways to use name-value arguments in MATLAB code?
Hi @Nitu, There are various ways for implementing name-value arguments. Some of the ways are as follows: options argument fu...
1 year 前 | 2
| 已接受
已回答
meanshift segmentation
Hi @milash k m, To implement mean shift segmentation on HSV images, you can follow these steps: Convert the RGB image to HSV c...
meanshift segmentation
Hi @milash k m, To implement mean shift segmentation on HSV images, you can follow these steps: Convert the RGB image to HSV c...
1 year 前 | 1
已回答
how can i model battery of constant voltage while charging and discharging with faster charging and discharging time
Hi @nitin kumar, To model a battery with constant voltage during charging and discharging, you can use a simplified approach by...
how can i model battery of constant voltage while charging and discharging with faster charging and discharging time
Hi @nitin kumar, To model a battery with constant voltage during charging and discharging, you can use a simplified approach by...
1 year 前 | 1
已回答
What is the best way to design home appliances for Off-Grid PV system in Simulink?
Hi @Yusuf Alghamdi, As details in the question are very general, I hope you are looking for a general approach for designing th...
What is the best way to design home appliances for Off-Grid PV system in Simulink?
Hi @Yusuf Alghamdi, As details in the question are very general, I hope you are looking for a general approach for designing th...
1 year 前 | 0
已回答
Adding noise to a sine wave signal and filtering that noise ?
Hi @Abdelaziz Elgaafary, To plot a sine wave signal without a noise and then adding a noise, follow these steps: Generating ...
Adding noise to a sine wave signal and filtering that noise ?
Hi @Abdelaziz Elgaafary, To plot a sine wave signal without a noise and then adding a noise, follow these steps: Generating ...
1 year 前 | 0
已回答
How to maintain DC link voltage constant in Grid tied Photovoltaic System?
Hi Mohammad If the DC link voltage is not constant in a grid-connected single-phase inverter when implementing current control,...
How to maintain DC link voltage constant in Grid tied Photovoltaic System?
Hi Mohammad If the DC link voltage is not constant in a grid-connected single-phase inverter when implementing current control,...
1 year 前 | 1
| 已接受
已回答
How to achieve rotation invariant using inertia matrix?
Hi Huahua, When computing the eigenvectors of the inertia matrix to obtain the rotation matrix, it is indeed possible to obtain...
How to achieve rotation invariant using inertia matrix?
Hi Huahua, When computing the eigenvectors of the inertia matrix to obtain the rotation matrix, it is indeed possible to obtain...
1 year 前 | 1
| 已接受
已回答
looking for convenient way to extract matrix from 1*n*n
Hi YuLi, You can use squeeze function here: A=zeros(5,5,5); size(A) ;%5x5x5 B=sum(A,1); size(B) %1x5x5 C=squeeze(B); siz...
looking for convenient way to extract matrix from 1*n*n
Hi YuLi, You can use squeeze function here: A=zeros(5,5,5); size(A) ;%5x5x5 B=sum(A,1); size(B) %1x5x5 C=squeeze(B); siz...
1 year 前 | 1
| 已接受
已回答
api.thigspeak vs mqtt.thingspeak
Hi Gulzar, Answering all your queries one by one: Query 1 : Are the two thingspeak APIs for read and write are for HTTP (REST)...
api.thigspeak vs mqtt.thingspeak
Hi Gulzar, Answering all your queries one by one: Query 1 : Are the two thingspeak APIs for read and write are for HTTP (REST)...
1 year 前 | 1
已回答
Turned image into matrix
Hi Putra, Actually here we can use imread function: img1=imread('owl.0.jpg'); img2=imread('owl.1.jpg'); img3=imread('owl.2.jp...
Turned image into matrix
Hi Putra, Actually here we can use imread function: img1=imread('owl.0.jpg'); img2=imread('owl.1.jpg'); img3=imread('owl.2.jp...
1 year 前 | 0