photo

Rajanya


Last seen: 대략 2개월 전 2024년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

0 질문
100 답변

순위
2,489
of 299,706

평판
24

참여
0 질문
100 답변

답변 채택
0.00%

획득한 표
4

순위
 of 20,791

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 165,568

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Knowledgeable Level 2
  • 3 Month Streak
  • First Answer

배지 보기

Feeds

보기 기준

답변 있음
how I use function F = myfun1(x,xdata) F= @(x,xdata)x(1).*exp(x(2).*xdata);
Hi @MUMATZ QURESHI, The following line makes 'F' a function handle to an anonymous function- F= @(x,xdata)x(1).*exp(x(2).*xdat...

2개월 전 | 0

답변 있음
How to set up while loop to end with a specific count of strings
Hi @Mahagoni, The 'break' statement can be used to terminate a loop immediately once an exit condition is met- in this case, wh...

3개월 전 | 0

답변 있음
simulink requires simulink error
Hi @Anil Kumar, Refer to this link which answers a similar question - https://www.mathworks.com/matlabcentral/answers/1572663-s...

3개월 전 | 0

답변 있음
Assertion failed: calledFcnInfo->get_path_fcn_info()
Hi @Romeo Coletti, I encountered the same error quite a few times when I was working with MATLAB R2021b long back. I could not ...

4개월 전 | 0

답변 있음
Boolean to double without changing the boolean
Hi @Erik Johan, I had faced a similar problem when working with continuous-time blocks in a model that used fixed step solvers....

4개월 전 | 0

답변 있음
Index into array out of range error in simulink
Hi @Rajashree Annapillai, MATLAB Function Blocks always need to be compatible for code generation but the code provided above h...

4개월 전 | 1

답변 있음
syntax error using roundn in fcn block
Hi @William, 'roundn' is not mentioned in the list of supported functions in Simulink Fcn Block - see here. Hence, it would alw...

4개월 전 | 0

답변 있음
"The 'Label' property name is ambiguous in the 'Transition' class " error
Hi @Lucas S, I had also encountered the same error while using MATLAB R2019a. The error was because of the partial property n...

4개월 전 | 0

답변 있음
Error in Matlab Function Block
Hi @Alejandro, This was a known bug in MATLAB R2013b or before (see https://www.mathworks.com/support/bugreports/1002236) Upgr...

5개월 전 | 0

답변 있음
Simulation stopped because of a runtime error
Hi @Maryam Nezami, The error is because the following expression '100-max(size(k))-100' evaluates to a negative integer within ...

5개월 전 | 0

답변 있음
Simscape: connecting ports to an scope
Hi @Rodrigo Gastón, While the brown lines represent physical signals, the green/blue lines represent connections within mechani...

5개월 전 | 0

답변 있음
I am receiving an error "Inferred size ('[1 3]') for data 'Pdot' does not match back propagated size ('[3]') from Simulink." . Pdot comes out of a Matlab function block in Simulink which is being fed into a Demux.
Refer to the following MATLAB Answers post - https://www.mathworks.com/matlabcentral/answers/266897-simulink-compilation-errors....

5개월 전 | 0

답변 있음
Errors during my simulation
Hi @Nicolas Frison, The error is because the 'Simulink-PS Converter' is expecting a scalar (size 1 vector) input signal but is ...

5개월 전 | 0

답변 있음
Simulink compilation errors ?
Hi @Henry Buck, You can go to Model Explorer > find 'gate_h' and select it > go to the general settings of the variable > force...

5개월 전 | 0

답변 있음
syntax error, Block error
Hi @Ahmed Sayed, The errors in the model are due to the fact that the expressions within the 'Fcn' block must be in terms of a ...

5개월 전 | 0

답변 있음
when i type " [aa,bb,cc,dd]=linmod('NAME',[1 0],0);" to linearise my model at point [1 0] with MATLAB,it shows me this error:
Hi @Dhruv Trivedi, The error is not specific to 'linmod' but occurs because input data has been specified without any root leve...

5개월 전 | 0

답변 있음
Dimension 2 is fixed on the left-hand side but varies on the right ([1 x 1] ~= [1 x :?])
Hi @Arkanra Kadhum, These errors occur because Simulink is unable to determine the output dimensions from the 'find ' function....

5개월 전 | 0

답변 있음
Add additional name into a matrix
Hi, If 'X' is a string array, you can just concatenate the new string to 'X' like (refer here): X = ["abc01", "bcd12", "cde03...

6개월 전 | 0

답변 있음
max function does not work with zero
Hi @Søren Schwartz, 'M1' in the script is a 1000 x 1 array i.e. a column vector with only one column. 'M1(1,o)' tries to extr...

6개월 전 | 0

| 수락됨

답변 있음
How to create a row vector upto a particular distance with the help of a variable?
Hi @AMIT KUMAR, The error is because of a missing parentheses pair (the part in italics become separate completely leading to t...

6개월 전 | 0

답변 있음
Not enough input arguments. Error in get_Result (line 6) if(answers{i}.charAt(j)==correct.charAt(j))
Hi @abdulelah farhat, 'charAt' method is not available in MATLAB (it's a Java method!). As I understand from the code, the fu...

6개월 전 | 0

답변 있음
Why am I receiving "Subscript indices must be real positive integers or logicals" error in my Euler's method code.
Hi @cpv008, The mentioned error is because of incorrect indexing of array 'y'. In MATLAB, all array indices must be logical or ...

6개월 전 | 0

답변 있음
When i use xlsread command, i get this error "index out of bounds because size(data)=[33,5]."
Hi @ram, This just meant that the file 'Crss_measured.xlsx' had only 5 columns (size - [33,5]) and 'data(:,7)' was trying to ac...

6개월 전 | 0

답변 있음
Error: Invalid expression. When calling a function or indexing a variable, use parentheses. Otherwise, check for mismatched delimiters.
Hi @Mihir Choughule, 'sum' is a function and needs to be called with parentheses (not square brackets [.]) - sum((h-y).^2) ...

6개월 전 | 0

답변 있음
Solution for Error: aFcnToAdd->isNamed()
Hi @David Vincon, This assertion error is mostly due to all the state names being commented in the stateflow chart. Uncommentin...

6개월 전 | 0

답변 있음
matlab has encountered an internal problem and needs to close
Hi @pb, I had encountered a similar crash in MATLAB R2016a which got resolved when I upgraded the version. Hence, my suggestion...

6개월 전 | 0

답변 있음
MATLAB crashes whenever running simulation in a .slx file
Hi @Mohamed Gad, This crash might be specific to Windows 11 because MATLAB R2021a did not have full Windows 11 support - https:...

6개월 전 | 0

답변 있음
Why do wavwrite and audiowrite produce different results?
Hi @Bene Wilde, WAV files organize the whole file data as chunks identified by four-character code (FourCC) identifiers to iden...

6개월 전 | 0

답변 있음
How to display struct along filed?
Hi @msahar, Assuming 'S' is a structure with the given fieldnames and values, you can loop through the structure and create the...

6개월 전 | 0

답변 있음
csvwrite error: Undefined function 'real'
Hi @Donovan Magney, The error is because, in the code provided, the type of 'elementsMatrix' would be composite, mostly 'struct...

6개월 전 | 0

더 보기