photo

Muruganandham Subramanian


KPIT Cummins Infosystems

Last seen: 거의 3년 전 2011년부터 활동

Followers: 0   Following: 0

메시지

Professional Interests: Model based design

통계학

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

배지 보기

Feeds

보기 기준

질문


Validation error, when configuring enable subsystem as autosar component?
Hi, when using the enable system's, states when enabling of enable port, if we set as "reset", the following error is popping o...

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

0

답변

답변 있음
covert matlab program to simulink block
Try using *'s-function'* block (Level-1).

10년 초과 전 | 1

답변 있음
How to get a sum of a series
Try using 'cumsum' command

10년 초과 전 | 2

답변 있음
Undefined symbols for architecture x86_64 error. Mex S-Function
Try using dgesv(matrix_size, brnhs, a, matrix_size, ipvt, b, matrix_size, info); Because, when you are passing as an poin...

10년 초과 전 | 1

답변 있음
[UNSOLVED, but ignored] Simulink model with red border and outlinks
Patrick, There are many sources of error/ warning in your model, am just listing something 1. the error may be due to *inp...

10년 초과 전 | 1

답변 있음
m files cannot run
Use a string instead of numbers for naming *.m file (e.g. abc.m instead of 1.m). then try it

10년 초과 전 | 1

답변 있음
Error during Code Generation
Hi, You may missed an anyone or both of the important activity for code generation, 1) select the mex compiler proper>> mex ...

10년 초과 전 | 0

| 수락됨

답변 있음
how to get rid of imaginary numbers, after a root.
time = roots([-g./2, v0y, y0-H]); time = max(time); time=real(time); at=atand((h0*cos(V))/((h0*sin(V))-(g*tid)))

거의 11년 전 | 0

| 수락됨

답변 있음
while running the following code i got an error as Subscript indices must either be real positive integers or logicals.
Refer this link: <http://www.mathworks.in/support/solutions/en/data/1-FA99VQ/index.html?solution=1-FA99VQ>

11년 초과 전 | 0

답변 있음
How do I select different value of resistances depending on the control input.
Use *MultiportSwitch* To know more, Refer this link: <http://www.mathworks.in/help/simulink/slref/multiportswitch.html>

11년 초과 전 | 0

답변 있음
how to compare two cell array
Refer this: <http://www.mathworks.in/matlabcentral/answers/1052> <http://www.mathworks.in/matlabcentral/newsreader/view_thr...

11년 초과 전 | 1

답변 있음
marking points in a plot
>> help plot Refer this links as well: <http://www.mathworks.in/matlabcentral/newsreader/view_thread/248714> <http:/...

11년 초과 전 | 0

답변 있음
How to match an input value with values stored in array or a file
A=[1, 3, 4, 1.5; 2, 4, 5, 1.6; 3, 5, 7, 2.2] A_size=size(A); inp_1=input(' '); inp_2=input(' '); ...

11년 초과 전 | 0

답변 있음
SIMULINK BUG, or Am I missing something in DATA STORE MEMORY block?
How you are reading the value for DSR B (data store read)?? from workspace?? Is DSR B depends on DSR A output?, If it depends, c...

11년 초과 전 | 0

답변 있음
Syntax Error: Unknown Function
Refer this link: <http://www.mathworks.in/support/solutions/en/data/1-FA99UB/index.html?solution=1-FA99UB>

11년 초과 전 | 0

답변 있음
create a test environment with the size 10x10x10cm
>> B = zeros(10,10,10); %Try this

11년 초과 전 | 0

답변 있음
how to plot only one iteration in for loop?
what is x?..see while plotting the size of _xlabel_ and _ylabel_ should be same.. In ur code x might be ...

11년 초과 전 | 0

답변 있음
How to read matrix into a variable increment?
e.g, >> A=[1;2;3;4;5;6]; >> t = 0 : A(1,1) : A(end,1) Are you expecting like this??

11년 초과 전 | 0

답변 있음
Issue with fixed point code generation
Hi, In fixedpoint operation, you might used scaling either *binary point or slope and bias*, So the value which you given as ...

11년 초과 전 | 0

답변 있음
uitable: Changing the Coloumn Name
>> help uitable or Check this link: <http://www.mathworks.in/help/matlab/ref/uitable.html>

11년 초과 전 | 0

답변 있음
How to color an area at plot surface...
hi, for e,g. x=[1 2 3 4 5]; for i=1:numel(x) f(i)=x(i)^2; g(i)=-x(i)^2+1; end plot(x,f,x,g) ...

11년 초과 전 | 0

답변 있음
How to set flags in MATLAB?
Do this, by *if()* operation e.g. if a==0 %do this else if a==1 %do this end

11년 초과 전 | 0

답변 있음
Change the sign of a particular element in a matrix
find(A==-1)=1 [EDITED, Jan, copied from comments] Better: A(A==-1)=1; or A=abs(A)

거의 12년 전 | 1

| 수락됨

답변 있음
How should I run a simulation in simulink so that the simulation matches the real time clock?
Check this link: <http://www.mathworks.in/matlabcentral/answers/17148>

거의 12년 전 | 0

| 수락됨

답변 있음
How to link a plot or continous data from M-file to Simulink Model
Have you tried with *From workspace* block? To know more, refer this link: <http://www.mathworks.com.au/help/simulink/slref/...

거의 12년 전 | 1

| 수락됨

답변 있음
How to output this cellarray?
>>Time{1,1}

거의 12년 전 | 0

| 수락됨

답변 있음
How to make convolution between two signals?
>>doc conv Refer this also: <http://www.mathworks.in/matlabcentral/fileexchange/23402-convolution-in-matlab-without-usin...

거의 12년 전 | 0

답변 있음
Finding value of a matrix
d=ones(3); V=1/2*(d(d(2,2),d(2,2))+d(d(2,2),d(2,3))) but, If you're using *rand()*, d(2,2),etc.. can't be accessible,...

거의 12년 전 | 0

답변 있음
how will use nested loop
try this: z = zeros(11,11); for a=1:11 for b=2:12 z(a,b)=a*b; end end z(:,1)=[];

거의 12년 전 | 0

| 수락됨

답변 있음
how to connect a variable resistor?
If you are using blocks from simpowersystems library, you can use _*surge arrester*_ block as variable resistor. but In case if ...

거의 12년 전 | 0

더 보기