回答済み
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...

約1年 前 | 0

回答済み
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...

約1年 前 | 0

回答済み
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 ...

約1年 前 | 0

回答済み
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...

約1年 前 | 0

回答済み
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'...

約1年 前 | 0

回答済み
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...

約1年 前 | 0

回答済み
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...

1年以上 前 | 1

回答済み
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...

1年以上 前 | 0

回答済み
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 ...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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 ...

1年以上 前 | 0

回答済み
"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...

1年以上 前 | 0

| 採用済み

回答済み
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...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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...

1年以上 前 | 0

回答済み
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))...

2年以上 前 | 1

| 採用済み

回答済み
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))

2年以上 前 | 0

回答済み
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...

2年以上 前 | 0

回答済み
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...

2年以上 前 | 1

回答済み
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,...

2年以上 前 | 0

| 採用済み

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

2年以上 前 | 1

| 採用済み

回答済み
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_...

2年以上 前 | 0

回答済み
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...

2年以上 前 | 0

回答済み
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 ...

2年以上 前 | 0

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

2年以上 前 | 0