Statistica
RANK
629
of 295.448
REPUTAZIONE
120
CONTRIBUTI
0 Domande
15 Risposte
ACCETTAZIONE DELLE RISPOSTE
0.00%
VOTI RICEVUTI
42
RANK
2.166 of 20.227
REPUTAZIONE
812
VALUTAZIONE MEDIA
3.80
CONTRIBUTI
3 File
DOWNLOAD
8
ALL TIME DOWNLOAD
7381
CONTRIBUTI
0 Post
CONTRIBUTI
0 Pubblico Canali
VALUTAZIONE MEDIA
CONTRIBUTI
0 Punti principali
NUMERO MEDIO DI LIKE
Feeds
Inviato
Base64 Image Encoder
Encode a MATLAB (R) figure or file on disk as a string in Base64
circa 8 anni fa | 4 download |
Inviato
Google(R) Translate
Translates a string between languages using Google(R)'s Language API.
circa 8 anni fa | 2 download |
Inviato
Compare Two Figures side by side
Takes the content of a two figures and puts them next to each other in one figure window.
circa 8 anni fa | 2 download |
Problema
Sort numbers by outside digits
Sort the array so that they are sorted as if their value was a 5 digit number made from the first three and last two digits of t...
oltre 12 anni fa | 2 | 147 risolutori
Risolto
Sort numbers by outside digits
Sort the array so that they are sorted as if their value was a 5 digit number made from the first three and last two digits of t...
oltre 12 anni fa
Risolto
Return the 'Size' of a String of Code
One of the most 'mysterious' parts of playing Cody is the sizing system. Given a string of commands, return the size that Cody w...
quasi 13 anni fa
setXmlStandalone bug?
Our implementation doesn't forward that document property to the serializer. You'll have to do it yourself, like this: docN...
quasi 13 anni fa | 0
| accettato
Risolto
Make a checkerboard matrix
Given an integer n, make an n-by-n matrix made up of alternating ones and zeros as shown below. The a(1,1) should be 1. Example...
quasi 13 anni fa
Risolto
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 ...
quasi 13 anni fa
Risolto
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:...
quasi 13 anni fa
How to edit *.m files on Matlab Mobile?
There is no way to edit files with MATLAB Mobile. Well, at least not without directly manipulating the text in the workspace wit...
quasi 13 anni fa | 0
| accettato
Saving and loading portfolios of editor windows?
You can use the MATLAB Editor API to batch open and close a set of files. See my "Saving state" example: <http://blogs.mathworks...
quasi 13 anni fa | 0
| accettato
Read Arabic Text from Excel and print it
It might be matter of encoding, that is fwrite might be using ASCII or windows-1252. Try making the file UTF-8 fid = fopen(...
quasi 13 anni fa | 0
Matlab Mobile - figures do not show up on iPhone
This is not expected behavior. What kind of plots are you creating? Maybe create a support request and I will work with the supp...
circa 13 anni fa | 0
Matlab Mobile - More than one device with one desktop session
Yes. Be aware that the history and "server state" depend on the back-and-forth communication. For example if you create a plot w...
circa 13 anni fa | 0
| accettato
Try-catch syntax error
The MATLAB Connector is not supported on versions earlier than R2009b. We haven't tested it on 7a, but I am pretty sure it's not...
circa 13 anni fa | 0
emacs key bindings in matlab editor
You can download old keyboard shortcut sets from the file exchange. Christina wrote up the instructions in a desktop blog post: ...
oltre 13 anni fa | 0
| accettato
large files, very slow editor, no fix?
Try also increasing the size of the Java heap. File -> Preferences -> General -> Java Heap Memory. It may not help, depending on...
oltre 13 anni fa | 1
| accettato
editor multiple tabs
Try docking the editors first. It's the south-east pointing arrow in the right of the menu bar. If Editor windows are undocked t...
oltre 13 anni fa | 38
| accettato
Is it possible to install the Matlab mobile connector if I do not have write permission to the MATLAB Installation folder ?
Hi Marc. Yes, but it is not as easy. You need to unzip the MATLABConnector.zip file to your desired directory, and then add the ...
oltre 13 anni fa | 0
| accettato
How to open the xcel file automatically?
winopen('C:\Documents and Settings\ototemp-u\Desktop\myfile.xlsx')
oltre 13 anni fa | 1
How can i save my result in each different files using FOR?
Try: save(savefile,'P'); The second argument to SAVE should be the variable's name, not it's value.
quasi 14 anni fa | 0
How do I remove the empty cells from a vector of cells?
I wanted to do: strs = setdiff(strs,{''}) but turns out it reorders the output: strs = 'four...
quasi 14 anni fa | 2