photo

Supreeth Subbaraya

MathWorks

Last seen: 11 days 前 自 2014 起处于活动状态

Followers: 0   Following: 0

消息

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

统计学

MATLAB Answers

0 个提问
14 个回答

排名
2,188
of 300,000

声誉
30

贡献数
0 个提问
14 个回答

回答接受率
0.00%

收到投票数
3

排名
 of 20,860

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 166,926

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Revival Level 1
  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
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...

2 years 前 | 0

| 已接受

已回答
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 ...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 1

| 已接受

已回答
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] ...

11 years 前 | 0

已回答
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...

11 years 前 | 0

| 已接受

已回答
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...

11 years 前 | 0

| 已接受

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

11 years 前 | 1

| 已接受

已回答
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...

11 years 前 | 1

| 已接受

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0