Community Profile

photo

Supreeth Subbaraya

MathWorks

Last seen: ongeveer 2 maanden ago Active since 2014

I am an Application Support Engineer at Mathworks. I am an Electrical Engineer by education. Professional Interests: Robotics, Embedded Systems

Statistics

  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer

View badges

Content Feed

View by

Answered
Four unresolved external symbol when generating static library for function "pcdownsample"
This issue is because a few of the libraries required are not linked. Here is a workaround you can try to resolve the issue: Ob...

6 maanden ago | 0

| accepted

Answered
Unable to return currency data for a specific date or period with yahoo
You can only access the present currency data using the yahoo fetch command. fetch(yahoo,'EURUSD=X'); This returns the ...

meer dan 9 jaar ago | 0

Answered
How can I apply alpha on pcolor without altering the data
Before the "hold off" line in your code instead of the command, set(e2,'facealpha',1) I guess it should be, set(e2...

meer dan 9 jaar ago | 0

Answered
how to get the values from netcdf to ascii format through matlab?
Take a look at the function <http://www.mathworks.com/help/matlab/ref/ncread.html ncread>. Here you can specify the indices of t...

meer dan 9 jaar ago | 0

Answered
How can I apply alpha on pcolor without altering the data
This seems to be an issue with the renderer. Change the renderer to |zbuffer| or |painters| and see if the result is what you ex...

meer dan 9 jaar ago | 0

Answered
How to detection score using Naive Bayes classifier?
Once you have the trained model, you can use the function |predict| to classify your test data into one of the classes. The docu...

meer dan 9 jaar ago | 0

Answered
Why does the marker size change randomly?
This is happening because your renderer is changing from |painters| to |zbuffer|. You can check this by putting the following li...

meer dan 9 jaar ago | 1

| accepted

Answered
mutiple reading and writing of date and time
To obtain an output like you mentioned, you can use the following code. DateVector = [Year Month Day Hour Minute Second] ...

meer dan 9 jaar ago | 0

Answered
movegui / OpeningFcn / simple Question / no need for more words :}
When you are calling the second gui, assign it to a handle, for example, h = callToSecondGui; Then use the |movegui| fun...

meer dan 9 jaar ago | 0

| accepted

Answered
How do I plot a US state using the mapping toolbox?
To plot a US State and points on it, you could something as shown below: %Read vector features and attributes from shapefil...

meer dan 9 jaar ago | 0

| accepted

Answered
Geographic coordinate to Image coordinate
You should use the |georasterref| function to create geographic raster reference object. For example, R = georasterref('Lat...

meer dan 9 jaar ago | 1

| accepted

Answered
How to rotate a bounding box at a location
You can perform the rotation and translation using the functions |hgtransform| and |makehgtform|. The documentation and the exam...

meer dan 9 jaar ago | 1

| accepted

Answered
read a range of values using dlmread
The "a" vector is exceeding in the number of columns a csv file can hold. You can store the vector as a column vector as opposed...

meer dan 9 jaar ago | 0

Answered
Setting handle within multiple axes with GUIDE?
The current axes handle (gca) is set to a axes of a subplot that is clicked on. So you do not need the “ |Windowbuttonupfcn| ” c...

meer dan 9 jaar ago | 0