photo

Babak


University of Sothern California

2012년부터 활동

Followers: 0   Following: 0

메시지

통계

MATLAB Answers

7 질문
158 답변

순위
459
of 300,331

평판
175

참여
7 질문
158 답변

답변 채택
57.14%

획득한 표
30

순위
 of 20,920

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 168,124

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • 6 Month Streak
  • Thankful Level 1
  • Revival Level 1
  • Knowledgeable Level 4
  • First Answer

배지 보기

Feeds

보기 기준

질문


How to generate code for a model with tunable parameter avoiding an algebraic loop?
How can one generate C code for the attached model? Parameter Td needs to be tunable ion the generated code. Simulink compla...

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

0

답변

질문


When will MATLAB 2014b release?
I noticed that in the past few years the "b" versions were released almost all in early September but this year it looks like it...

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

5

답변

답변 있음
Clean variables of worskpace from GUIDE
You can send commands to base workspace using the evalin() function as you mentioned. For example you can say: evalin('base'...

12년 초과 전 | 0

| 수락됨

답변 있음
From cartesian to polar with points
vectors = V(2:2:end) - V(1:2:end); % vector has half the size(1) of V X = vector(:,1); Y = vector(:,2); [THETA,RHO]...

12년 초과 전 | 0

답변 있음
saveas command saves plot with black background and no axis lables
if your platform is windows go to display settings for the screen and change to a "classic view".

12년 초과 전 | 0

답변 있음
Help with errors - Unable to meet integration tolerances, Time integration failed, Attempted to access u(5), index out of bounds because numel (u)=4
As far as for a PDE, if you want to make sure that this singularity is something related to your numerical integration method or...

12년 초과 전 | 0

| 수락됨

답변 있음
Simulink bloc to check if a condition is true during a period of time
You can use a *"Weighted Sample Time"* block to know what's the sampling time and an *"If"* block to create a condition. If y...

12년 초과 전 | 0

답변 있음
GUI throws error: Attempt to reference field of non-structure array.
You are probably trying to use, handles.something where you have not previously defined it in the callback function or ...

12년 초과 전 | 0

답변 있음
How to set Matlab do display all calculation results?
When the plotted data does not correspond to the whole "time span", it is usually because of that the time span is too large in ...

12년 초과 전 | 0

답변 있음
who knows how to convert double to cell so i can get a 2D plot ?
mat2cell() cell2mat()

12년 초과 전 | 0

답변 있음
Help with Simulink system?
In Simulink, equations are integrated in time. Your system doesn't seem to have governing (continuous or discrete) equations, in...

12년 초과 전 | 0

답변 있음
How I can generate a continuous signal using a solver with fixed step size?
You need to let your tmax be 0.4 and solve then discard the data for 0.3<t<0.4

12년 초과 전 | 0

답변 있음
How do I add 2 Y axis to my MATLAB Plot?
Look up plotyy() in the documentation.

12년 초과 전 | 0

답변 있음
GUI Push button Help !
Open your GUI figure file by right clicking on its name in the MATLAB current folder window and choosing GUIDE. Find the push...

12년 초과 전 | 0

| 수락됨

답변 있음
ode45 - Does matlab keep track of derivatives which can be recalled?
Re-formulate your equations from x_dot = f(t,x,x_dot) to g(t,x,x_dot) = f(t,x,x_dot) - x_dot = 0 and then use ...

12년 초과 전 | 0

| 수락됨

답변 있음
How to resolve "Conversion to double from cell is not possible."
use cell2mat()

12년 초과 전 | 6

답변 있음
Multi Dimensional Cell Array
maxsize1 = 100; maxsize2 = 100; maxsize3 = 100; mycell = cell(maxsize1 ,maxsize2 ,maxsize3 ); mycell{1,1,1} = A1; ...

12년 초과 전 | 0

답변 있음
how Can I Know that two Blocs were connected in the same subsystem?
Use get_param to get the parameter of the two blocks. Find out the lines connected to the two blocks with get_param . ...

12년 초과 전 | 0

답변 있음
Calling a function f inside f,how can we do this
Just as a side issue: You better change the name of the function from a one letter name "f" to at least a 2 letter name. I remem...

12년 초과 전 | 0

질문


supporting cells for code generation
Do MATLAB compiler and MATLAB Builder NE support cell type variables? I'm asking because I just found out MATLAB coder does...

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

1

답변

답변 있음
Adding up words in matrices on Matlab
b = {'Hello' 'my' 'name' 'is' 'kevin' 'Susan'}; a = strsplit('kevin, kevin my baby I am telling you Hello Hello my name is ...

12년 초과 전 | 0

답변 있음
Movefile access is denied error
MATLAB has opened to write to file and hasn't closed them... Exit MATLAB then try moving/deleting the files.

12년 초과 전 | 0

답변 있음
I want to know how to convert these lines of code into c
Use MATLAB coder to convert matlab code into C code.

12년 초과 전 | 0

답변 있음
set_param Command calls OpeningFcn
If the GUI is not open, as soon as you call to open it, the OpeningFcn runs. Now its up to you what to put in the Opening Fcn. Y...

12년 초과 전 | 0

답변 있음
tic toc in a GUI
tic toc gives you the total elapsed amount of time. There is no such meaning of all the instances... you cannot save time instan...

12년 초과 전 | 0

답변 있음
How can I get the value from an inner callback function to an outer function?
assigin('caller','a',20) creates a parameter a in the caller function and assigns 20 to it. assigin('base','a',20) do...

12년 초과 전 | 0

답변 있음
Vectorizing inside a loop
The problem with matrix(i:n:end,4:6)=y(i,:)-matrix(i,1:3); is that the first index i:n:end is a vector and does not cor...

12년 초과 전 | 0

답변 있음
how matlab calculate the sqrt of complex number?
usually powers of between 0 and 1 of complex numbers have multiple answers! As an example, (-3-6i)^(1/2) [THETA,RHO] = ...

12년 초과 전 | 0

답변 있음
Is it possible to terminate ode45 once a certain condition is met during integration?
to stop the integration you need to define an "event" function. Loop up ODE45 documentation and see how you can define the event...

12년 초과 전 | 0

답변 있음
Delete double cell array entries
CellArray={[1 2 3] [1 2] [3 5 6 7] [1 2] [2 4] }; NewCellArray = [CellArray(1:3) CellArray(5)];

12년 초과 전 | 0

더 보기