Respondida
Integration with respect to time
Hi, I understand that you want to perform integration of the given function. To integrate use the function q = integral(fun...

alrededor de 1 año hace | 0

Respondida
How do we solve Stellar Motion,Task 5
Hi, In my understanding in the given task you need to plot the graph using a base 10 logarithmic scale, use the loglog() func...

alrededor de 1 año hace | 0

Respondida
Co-Simulation between MSC ADMS View and MATLAB/Simulink---ERROR: PINPUT/0 is not defined in the data set. Command ignored. WARNING: Integrator HMAX could not be determined.
Hi, I understand that you are doing co-simulation in ADAMS and Simulink and getting errors, follow the link below for possible ...

alrededor de 1 año hace | 0

Respondida
How to create dataset from my tribological experimental data?
Hi, I understand that you want to train a neural network with multiple inputs and outputs, you can refer to the following docu...

alrededor de 1 año hace | 0

Respondida
Generating LTE Waveforms with Reference Signal Only
Hi Jianbin, As per my understanding of the case, you can achieve the desired custom LTE waveform configuration by using MATLAB'...

más de 1 año hace | 0

Respondida
How to add wireless capability to DC Electric Charging Vehicle Diagram?
Hi Arnab, To merge the DC EV Charger model with the wireless transceiver model, you can follow these general steps: 1. Open b...

más de 1 año hace | 0

Respondida
Access variable names for Simscape block through code
Hi, In my understanding you want to access the variable names from a simscape model you can use the following function [names...

más de 1 año hace | 1

Respondida
Stateflow variable is not exported as XML
Hi, In my understanding you are trying to export the stateflow variables to XML format, Please use the following command: sav...

más de 1 año hace | 0

Respondida
Fatal error on startup in 2023a version
Hi Akshat, This error can occur when MATLAB get's corrupted during the installation process. To resolve this issue, disable ...

más de 1 año hace | 0

Respondida
In a Simulink model, how to generate baseband signal please?
Hi Swamy, I understand you are looking for a method to generate a baseband signal as a source in Simulink. While there is no su...

más de 1 año hace | 0

Respondida
RF energy harvesting stimulation
Hi Sreeraj, As you are a beginner, I suggest you to kindly go through the MATLAB onramp and Simulink onramp. To simulate RF ...

más de 1 año hace | 0

Respondida
"save the file using UTF-8 encoding instead"
Hi Francisco, Please find this MATLAB answer: https://in.mathworks.com/matlabcentral/answers/894962-i-cannot-save-matlab-e...

más de 1 año hace | 0

| aceptada

Respondida
How find x, y, z position of .grd. file with an initial point and distace?
Hi, You can follow the following steps for finding the coordinates: Use grdread2 to read .grd file. Convert the lati...

más de 1 año hace | 0

Respondida
What causes UIAxes gesture interactions to become disabled?
Hi, In my understanding from the information that was provided by you, here are two possible workarounds: 1) Enable the inter...

más de 1 año hace | 0

Respondida
Simulink Example ''Modeling and Testing an 802.11ax RF Receiver with 5G Interference''
Hi MD Abdul, In the context of the example you mentioned, the symbol index refers to the index or position of each symbol withi...

más de 1 año hace | 0

Respondida
hydraulic actuator in simulink
Hi Siddharth! I understand that you are interested in designing a hydraulic actuator in Simulink. To assist you, I recommend re...

más de 1 año hace | 0

Respondida
How to find inverse of Bessel function of first kind?
Hi Jacky! Here's an example MATLAB code that demonstrates how to find the inverse of the Bessel function of the first kind usin...

más de 1 año hace | 0

Respondida
How to return a true/false logical array from a string array of repeating numbers?
I think this may work: A = [3 3 2 1 5 1 0 4]; [uniqueA i j] = unique(A,'first'); idRep = find(not(ismember(1:numel(A),i))...

más de 2 años hace | 1

| aceptada

Respondida
How to find euclidean distances of each column of the two matrices?
Hi , You can do like this: A = [1 2;3 4] B = [4 2;7 4] Distance1 = sqrt(sum((A - B) .^ 2))

más de 2 años hace | 0

Respondida
How to name rows with same names?
Hi, A similar question has been answered earlier. Please refer this MATLAB answer for assigning same row name for a range of r...

más de 2 años hace | 0

Respondida
Extracting Info from the table
If you want to access data from multiple variables at once, you can index with curly braces. Inside the curly braces, you can s...

más de 2 años hace | 1

Respondida
Determining Smith Form of a rectangular matrix
Hi, I think this may help you https://in.mathworks.com/matlabcentral/fileexchange/60410-mnsmithform-a. Open the Functions tab,...

más de 2 años hace | 0

| aceptada

Respondida
how to merge twovgraphs
You can check out this documentation for plotting both graphs together: Display Data with Multiple x-Axes and y-Axes.

más de 2 años hace | 1

| aceptada

Respondida
create a matrix of maximums
To get maximum value for each column and the corresponding indices you can do the following: max_values = max(range_compressed_...

más de 2 años hace | 0

Respondida
hey ,i am using this function to implement gradient descent but it returns only the theta value not the J_history value,Please help me in this situtation
Hi Ashok, Are you facing this same issue : https://in.mathworks.com/matlabcentral/answers/787299-gradient-descent-fix The an...

más de 2 años hace | 0

Respondida
import multiple mat files together
Hi, You can use load for loading files, plot for plotting, and hold on and hold off for plotting multiple plots on one. Hold ...

más de 2 años hace | 0

Respondida
how to get an image from webcam
Hey, I think this may help you : Capture Live Image.

más de 2 años hace | 0