Supreeth Subbaraya
MathWorks
Followers: 0 Following: 0
I am an Application Support Engineer at Mathworks. I am an Electrical Engineer by education. Professional Interests: Robotics, Embedded Systems
Statistica
0 Domande
14 Risposte
RANK
2.126
of 295.448
REPUTAZIONE
30
CONTRIBUTI
0 Domande
14 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
3
RANK
of 153.872
CONTRIBUTI
0 Problemi
0 Soluzioni
PUNTEGGIO
0
NUMERO DI BADGE
0
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
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...
circa un anno fa | 0
| accettato
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 ...
oltre 10 anni fa | 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...
oltre 10 anni fa | 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...
oltre 10 anni fa | 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...
oltre 10 anni fa | 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...
oltre 10 anni fa | 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...
oltre 10 anni fa | 1
| accettato
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] ...
oltre 10 anni fa | 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...
oltre 10 anni fa | 0
| accettato
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...
oltre 10 anni fa | 0
| accettato
Geographic coordinate to Image coordinate
You should use the |georasterref| function to create geographic raster reference object. For example, R = georasterref('Lat...
oltre 10 anni fa | 1
| accettato
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...
oltre 10 anni fa | 1
| accettato
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...
oltre 10 anni fa | 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...
oltre 10 anni fa | 0