Community Profile

photo

Gargi Patil

Last seen: 12 mois il y a Actif depuis 2021

Statistiques

  • Knowledgeable Level 3
  • Knowledgeable Level 2
  • Revival Level 2
  • First Answer

Afficher les badges

Content Feed

Afficher par

A répondu
plugging in a function inside fittype, error
Hi, This error can be resolved by declaring the size of the output array yf beforehand in the function Exp_t as follows: funct...

plus de 2 ans il y a | 1

| A accepté

A répondu
writecell() error with 'AutoFitWidth' option
Hi, The property AutoFitWidth is used to adjust column width automatically. Thus, it can only be used when writing to spreadshe...

plus de 2 ans il y a | 0

A répondu
How to solve an equation with two matrices?
Hi, As suggested in the comments, the result can be stored in a variable S. S will be a struct with the fields theta1, alpha, d...

plus de 2 ans il y a | 0

A répondu
mex codegen issue: Class insfilterNonholonomic is not supported by coder.Type as it is a handle class.
Hi, Code generation does not support handle class objects as entry point arguments. You can refer to the linked documentation f...

plus de 2 ans il y a | 0

| A accepté

A répondu
How can I get the first matrix of this equation?
Hi, As mentioned in the comments, 2 matrices can be multipled using the * operator. The following code describes the same: A =...

plus de 2 ans il y a | 0

A répondu
if the imaginary part of a complex number is zero
Hi, My understanding is that you would like to detect imaginary values equal to zero at the following line: tt(v)=~any(imag(z(...

plus de 2 ans il y a | 0

A répondu
그래프를 그릴때 y축을 지수축으로 설정하는 방법이 무엇일까요
Hi, I understand that you would like to plot a graph with exponential values equally spaced on the y-axis. Kindly refer to the ...

plus de 2 ans il y a | 0

A répondu
How to install MinGW64 compiler manually for Matlab 2019a
Hi Clare, Kindly refer to the following link which describes different cases and ways to install MinGW Compiler. https://in.ma...

plus de 2 ans il y a | 0

A répondu
im having trouble with symfun here. it says that eqn1, k1, and k2 must be data of sym. how do i do that?
Hi, I'm unable to reproduce the error you are facing. The code provided in the question is running without errors in MATLAB R20...

plus de 2 ans il y a | 0

A répondu
inverse fast-fourier transformation in mri
Hi, To find the inverse Fourier transform of an image, I'd recommend using the function ifft2. You can refer to the following c...

plus de 2 ans il y a | 0

A répondu
Unrecognized function error.
Hi, As mentioned in the comments, the forward slash in the path is not required. Ensure the image is on the MATLAB path or pass...

plus de 2 ans il y a | 0

A répondu
FM Spectrum of sinusoidal signal
Hi, You can refer to the following resources as a starting point to plot the spectrum of a FM Modulated signal: https://in.mat...

plus de 2 ans il y a | 0

| A accepté

A répondu
I can not find enable ASAP2 interface block in matlab 2021a
Hi, As mentioned in the release notes (under Functionality being removed or changed for Code Interface Configuration and Integr...

plus de 2 ans il y a | 1

A répondu
How to calculate code coverage for main code by its unit tests?
Hi, In the MATLAB Code Coverage Report, the Breakdown by Source section will list the source file(s) and provide details about ...

plus de 2 ans il y a | 0

A répondu
Problemas en la instalación
Hi, I understand that your MATLAB installation is getting stuck at 94%. You can refer to the following resources that list out ...

plus de 2 ans il y a | 0

A répondu
Solving system of ODEs using Euler's method and 4 th order Runge Kutta method.
Hi, The given code throws the error "Array indices must be positive integers or logical values.". The code in the if-else is wr...

plus de 2 ans il y a | 0

A répondu
Unrecognized function or variable 'pdeCoefficients'.
Hi! The version number you have provided refers to MATLAB R2015b. However, the function pdeCoeffecients was introduced in R2021...

plus de 2 ans il y a | 1

A répondu
Anyone knows how i can simulate a synchronous reluctance motor?maybe i need a special toolbox?
Hi, The Synchronous Relucatance Motor can be represented using the SynRM block in Simscape Electrical.

plus de 2 ans il y a | 0

A répondu
How do I save changes to an edf file that was generated from EyeLink?
Hi, The save command by default saves a given file as a MAT-file. MathWorks provides support to work with EDF/EDF+ Files throug...

plus de 2 ans il y a | 0

A répondu
When I use the sendmail function, I got this error 'Could not connect to SMTP host: smtp.gmail.com, port: 465, response: -1' How can I fix this error?
Hi! The given error could not be reproduced and the code shared by you successfully sends a mail as expected on MATLAB R2020b...

plus de 2 ans il y a | 0

| A accepté

A répondu
Extracting coefficients of 'sinwt', 'coswt', sin2wt etc from a symbiolic expression.
Hi, My understanding is that you would like to extract the coefficients of a symbolic trigonometric expression. The function "...

plus de 2 ans il y a | 0

A répondu
라이선스 전송횟수 초과
Hi, There does exist a constraint on the number of computers MATLAB can be installed on and how many times the license can be r...

plus de 2 ans il y a | 0

A répondu
How to opened MATLAB offline ???
You can refer to the following thread which describes commmon issues that prompt MATLAB to ask you for activation repeatedly: Wh...

plus de 2 ans il y a | 0

A répondu
How to programmatically update "Code Mappings - AUTOSAR SW Component "?
Outports and other model elements can be programmatically configured through the interface for code mappings. You can refer to ...

plus de 2 ans il y a | 0

| A accepté

A répondu
How to learn more about cell usage
To learn more about cells, you can refer to the following documentation as a starting point: Cell array.

plus de 2 ans il y a | 0

A répondu
How to run independent for loops altogether
Hi, You can refer to this thread which introduces parallel computing and parfor to run for loops in parallel.

presque 3 ans il y a | 0

A répondu
Unrecognized function or variable
Hi, The given error could not be reproduced. The provided code didn't throw any errors when run on MATLAB Online and successfu...

presque 3 ans il y a | 0

A répondu
Run a script file "i" times and save output variable to a 3D array
The code provided by you should correctly assign the values to result. You can also simplify it by using the following code in t...

presque 3 ans il y a | 0

| A accepté

A répondu
How do i get aproximation of a function?
Hi, You can refer to the following thread for function approximation which includes a least squares method approach as well a...

presque 3 ans il y a | 0

A répondu
Reshape list into columns
I understand that you would like to create a matrix with each column containing same elements and each row having unique element...

presque 3 ans il y a | 0

| A accepté

Charger plus