Community Profile

photo

amin ya


Last seen: 9개월 전 2018년부터 활동

통계

  • Thankful Level 2
  • First Review
  • 3 Month Streak
  • Knowledgeable Level 2
  • Thankful Level 1
  • Revival Level 1
  • First Answer

배지 보기

Content Feed

보기 기준

질문


Global Simulink static/constant inside Matlab function
Is there a way to define a global Simulink constant that can be called from Matlab functions? I know these options but none wor...

대략 4년 전 | 답변 수: 1 | 0

1

답변

질문


Autohotkey doesn't work in Matlab
For the Live Editor in Matlab, I am trying to modify Ctrl+C and Ctrl+V keys, but apparently, Autohotkey scripts don't work in Ma...

4년 초과 전 | 답변 수: 0 | 0

0

답변

답변 있음
using a structure as a global variable
Not using globals is not always possible! Such as in App designer when you need to accesss a workspace variable. But you can use...

4년 초과 전 | 6

답변 있음
How can I create a loop that will generate the amount of points that exist in between specific values?
Matrix version: with each group in one row and the rest of the elements as 0 FSpks = [4, 5, 6, 6.5, -1, 2, 4, 5, 6, -1, 1, ...

4년 초과 전 | 0

| 수락됨

질문


Connection with Parrot mini-drone at 192.168.3.1 failed
I am trying to deploy my code on Parrot Mambo, it builds and then this interface gets opened. But for running I get this error: ...

4년 초과 전 | 답변 수: 1 | 1

1

답변

질문


MEX compiler 'Intel Parallel Studio XE 2019 for C++ with Microsoft Visual Studio 2017' is not supported.
I cannot compile MEX code on Matlab 2019a (9.6.0.1150989) using Intel Parallel Studio 2019. I get this error: The current MEX c...

4년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
.* and * give me different answer
* % matrix multiplication .* % element wise multiplication

4년 초과 전 | 1

| 수락됨

질문


Xilinx Vivado 2019.1 or 2018.3 support?
Here in this link it says that the HDL Workflow Advisor is tested with Xilinx Vivado Design Suite 2018.2 as a third-party FPGA ...

4년 초과 전 | 답변 수: 2 | 2

2

답변

답변 있음
Dot indexing is not supported for variables of this type
If your cell has strctures inside, you should first mention the row and column of the cell then access the structure inside a ce...

4년 초과 전 | 0

답변 있음
How do I use the value of a variable in function?
Post a minimal working version of your code. You don't say what a and b are! Depends on what you want to do. Z(a,b,c)=distan...

4년 초과 전 | 0

답변 있음
Convert optimization problem from R to Matlab
Have you tried this? https://www.rdocumentation.org/packages/popdemo/versions/1.3-0/topics/R2Matlab You need to study Matlab o...

4년 초과 전 | 0

답변 있음
how rng and randn works in Matlab?
Use the followings to see the algorithm: open rng open randn

4년 초과 전 | 0

질문


Arduino Simulink codertarget.arduinotarget.internal.addCompilerPath error
For Arduino inside Simulink: I am trying to build a model in external mode. I have made the model using control algorithm templ...

4년 초과 전 | 답변 수: 1 | 0

1

답변

답변 있음
Round polynomial coeff symbolic
Ok, 3rd method works strangely. Pi = sym('pi'); %if you want it treated as symbolic

4년 초과 전 | 0

| 수락됨

질문


Round polynomial coeff symbolic
As built in Matlab lacks this, I have written a code to find coeffitients that are very small: function symRound=coeffRounder(s...

4년 초과 전 | 답변 수: 1 | 0

1

답변

질문


Coder - Subtract vector from matrix, size mismatch error
Although MATLAB supports subtracting a vector from a matrix (as stated here : https://www.mathworks.com/help/matlab/matlab_prog/...

거의 5년 전 | 답변 수: 1 | 0

1

답변

답변 있음
How do I fix receiving "Caught throwable while adding doc set item to doc set builder: null" in the command window after Startup?
I solved the problem by reintsalling MATLAB.

거의 5년 전 | 1

| 수락됨

질문


programming Arduino both in IDE and MATLAB
I have a question regarding programming Arduino simultaneously both in native Arduino IDE and MATLAB (a hybrid workflow). Is the...

거의 5년 전 | 답변 수: 0 | 0

0

답변

답변 있음
Washing machine starting code
The question is very broad. So probably you won't get much of help here, as here is not a place to ask physiscs or modelling que...

거의 5년 전 | 0

답변 있음
how i can addon fuzzy logic toolbox in pre installed matlab ?
https://www.mathworks.com/campaigns/products/trials/trial-fl.html

거의 5년 전 | 0

질문


Coder - passing extra variables to function (Function Pointer/Functor)
In MATLAB, whenever I want to pass extra variables to originalFunction (to keep the callerFunction code clear and abstract), I w...

거의 5년 전 | 답변 수: 0 | 0

0

답변

답변 있음
MATLAB 2019a Windows 10 support
MATLAB 2019a works on any Windows 10. https://www.mathworks.com/support/requirements/matlab-system-requirements.html

거의 5년 전 | 0

| 수락됨

답변 있음
How could I passing parameters from .m file to GUI
I don't understand your problem If you are trying to print something use one of the following commands fprintf() disp() If y...

대략 5년 전 | 0

질문


Coder - Create constant for specifying array size
How can I create a constant variable in MATLAB (and its results the generated C code), so I can use it later in my code to speci...

대략 5년 전 | 답변 수: 1 | 0

1

답변

답변 있음
Efficient Multiplication of Submatrices whose results are to be safed in Submatrices
Why you don't simly use : A(1:100,1:100)*B(1:100,1:100) Matlab matrix multiplication already uses parallelization which is ver...

대략 5년 전 | 0

질문


symfun to sym conversion error only in a Function (not Script)
When I use the following code as a script it works without any error. % function [A]=myFun() syms t real %time syms w(t) ...

대략 5년 전 | 답변 수: 0 | 0

0

답변

질문


Coder - Static size string in sprintf
How can I prevent MATLAB Coder to generate variable size code for a simple number insertion into a string? for i=1:4 ...

대략 5년 전 | 답변 수: 1 | 0

1

답변

답변 있음
Use a symfun as index of a matrix
use formula to convert symfun to a matrix: matrix=formula()

5년 초과 전 | 1

질문


Microsoft Visual Studio 2017 is not detected in Matlab 2018b
I have installed Microsoft Visual Studio 2017 community, but when I run: mex -setup I get this error: E...

5년 초과 전 | 답변 수: 2 | 0

2

답변

답변 있음
sorting data in a nested cell
You need to write a for loop and use classic sort algorithm. I had this problem, but there is no easy way to access or sort the ...

5년 초과 전 | 1

| 수락됨

더 보기