Siddharth Shankar - MATLAB Central
photo

Siddharth Shankar

MathWorks

2011년부터 활동

Followers: 0   Following: 0

메시지

Professional Interests: Software development, GUI building, Instrument Control, Data Acquisiton

통계

All
MATLAB AnswersCodyFile ExchangeFrom 01/11 to 03/25Use left and right arrows to move selectionFrom 01/11Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 질문
21 답변

File Exchange

2 파일

Cody

0 문제
9 답안

순위
1,072
of 297,560

평판
70

참여
0 질문
21 답변

답변 채택
0.00%

획득한 표
24

순위
3,168 of 20,456

평판
503

평균 평점
2.80

참여
2 파일

다운로드 수
7

ALL TIME 다운로드 수
4950

순위
38,855
of 159,148

참여
0 문제
9 답안

점수
100

배지 수
1

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Personal Best Downloads Level 1
  • First Review
  • First Submission
  • Knowledgeable Level 2
  • First Answer
  • Solver

배지 보기

Feeds

보기 기준

제출됨


Reverse Token Order
Reverse the order of words in a string.

8년 초과 전 | 다운로드 수: 1 |

0.0 / 5

제출됨


Two Port S-Parameter Measurement
Perform a 2-port s-parameter measurement using the Instrument Control Toolbox.

8년 초과 전 | 다운로드 수: 6 |

2.8 / 5

답변 있음
Why does Stateflow evaluate the condition [x >= (1/2)] differently from [x >= 0.5]?
If I had to guess, I would think that 1/2 results in integer division which always yields 0, and this is then cast to double (0....

12년 초과 전 | 1

| 수락됨

답변 있음
How to activate Stateflow substate without flow graph
Can you please expand on the question a bit? It would help if you could sketch out a very simple example example with maybe jus...

12년 초과 전 | 1

문제를 풀었습니다


Check if sorted
Check if sorted. Example: Input x = [1 2 0] Output y is 0

대략 13년 전

문제를 풀었습니다


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

대략 13년 전

문제를 풀었습니다


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

대략 13년 전

문제를 풀었습니다


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

대략 13년 전

문제를 풀었습니다


Add two numbers
Given a and b, return the sum a+b in c.

대략 13년 전

문제를 풀었습니다


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

대략 13년 전

문제를 풀었습니다


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

대략 13년 전

문제를 풀었습니다


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

대략 13년 전

문제를 풀었습니다


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

대략 13년 전

답변 있음
How to find number of arrays in a structure filed ?
Off the top of my head: function [N1, N2] = fieldCount(inputStruct) N1 = 0; N2 = 0; for i = 1: numel(inputStruct) i...

대략 14년 전 | 0

| 수락됨

답변 있음
How to react on a change of variable from workspace?
One POSSIBLE solution if you are not considering a _timer_ object (and assuming that you have a relatively recent version of MAT...

대략 14년 전 | 4

| 수락됨

답변 있음
Declaring 'many' variables from work space into function workspace
A very simple (but effective) way to do this is to use EVALIN to save the necessary variables in the base workspace to a MAT fil...

대략 14년 전 | 8

답변 있음
Writing Non-ASCII keys in Serial Port
The value for CTRL-Z (^Z), is 26 (decimal value). So you could just try using FWRITE to send that value, in addition to all the ...

대략 14년 전 | 1

| 수락됨

답변 있음
Store and read MAT-file as embedded file in an Excel spreadsheet
If you are familiar with C++, then you could consider using the <http://www.mathworks.com/help/techdoc/apiref/bqoqnz0.html#bqoqn...

대략 14년 전 | 0

답변 있음
How do I creating a database of image files that is accessible from MATLAB?
You could store the image data into a database as a BLOB (Binary Large Object). I know you can do this in MySQL, you need to che...

대략 14년 전 | 1

답변 있음
Frequency modulating a wav file?
If simulink is an option, the <http://www.mathworks.com/help/toolbox/commblks/ref/fmmodulatorpassband.html FM Modulator Passband...

대략 14년 전 | 0

답변 있음
calling Java methods using JNI/C++ (via Swig) from Matlab -> UnsatisfiesLinkError
Please try adding the path to the C++ library inside the file: librarypath.txt 1. From the MATLAB command prompt: edit lib...

대략 14년 전 | 1

답변 있음
How can I convert a MATLAB file into a .exe file ?
You can do this using the <http://www.mathworks.com/products/compiler/ MATLAB Compiler>. The executable created needs to be pack...

대략 14년 전 | 0

답변 있음
How to replace "getsnapshot" with the button on my webcam?
What you are asking for is a "hardware trigger". You could check if your VIDEOINPUT object supports hardware triggers by using t...

대략 14년 전 | 1

답변 있음
MATLAB GUI
As Matt mentioned, UITABLE wasn't really supported/documented till R2008a and was not (in 7a) nearly as powerful as it is today....

대략 14년 전 | 1

답변 있음
How to replace MATLAB icon from a figure window?
As Bruno says, that would be a breach of the MathWorks license agreement. Specific details here: <http://www.mathworks.com/su...

대략 14년 전 | 4

답변 있음
Read Data from Serial Device
Douglas, I would recommend adding a call to FLUSHINPUT (if you are using the Instrument Control Toolbox) as soon as you FOPEN...

대략 14년 전 | 0

답변 있음
Image Background Removal
Have you considered using the <http://www.mathworks.com/help/toolbox/images/ref/imabsdiff.html imabsdiff> method. The difference...

대략 14년 전 | 0

답변 있음
Saving a Bilevel - or Binary Image
B = zeros(X, Y, 1, NumberOfFrames); B = logical(B); is what you are looking for. More info here: <http://www.mathworks.com...

대략 14년 전 | 0

답변 있음
Motion detection using image subtraction.
<http://www.mathworks.com/company/newsletters/news_notes/win03/tracking.html Tracking Objects> Look at the section titled: "O...

대략 14년 전 | 0

| 수락됨

답변 있음
Creating a gui with variable axes
As far as "variable axes" goes, one approach you could take is to "link" your data to the axes. Then, when you change the data, ...

대략 14년 전 | 0

더 보기