Statistik
RANG
629
of 295.448
REPUTATION
120
BEITRÄGE
0 Fragen
15 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
42
RANG
2.166 of 20.227
REPUTATION
812
DURCHSCHNITTLICHE BEWERTUNG
3.80
BEITRÄGE
3 Dateien
DOWNLOADS
8
ALL TIME DOWNLOADS
7381
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Gesendet
Base64 Image Encoder
Encode a MATLAB (R) figure or file on disk as a string in Base64
etwa 8 Jahre vor | 4 Downloads |
Gesendet
Google(R) Translate
Translates a string between languages using Google(R)'s Language API.
etwa 8 Jahre vor | 2 Downloads |
Gesendet
Compare Two Figures side by side
Takes the content of a two figures and puts them next to each other in one figure window.
etwa 8 Jahre vor | 2 Downloads |
Problem
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...
mehr als 12 Jahre vor | 2 | 147 Lösungsvorschläge
Gelöst
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...
mehr als 12 Jahre vor
Gelöst
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...
fast 13 Jahre vor
setXmlStandalone bug?
Our implementation doesn't forward that document property to the serializer. You'll have to do it yourself, like this: docN...
fast 13 Jahre vor | 0
| akzeptiert
Gelöst
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...
fast 13 Jahre vor
Gelöst
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 ...
fast 13 Jahre vor
Gelöst
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:...
fast 13 Jahre vor
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...
fast 13 Jahre vor | 0
| akzeptiert
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...
fast 13 Jahre vor | 0
| akzeptiert
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(...
fast 13 Jahre vor | 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...
etwa 13 Jahre vor | 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...
etwa 13 Jahre vor | 0
| akzeptiert
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...
etwa 13 Jahre vor | 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: ...
mehr als 13 Jahre vor | 0
| akzeptiert
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...
mehr als 13 Jahre vor | 1
| akzeptiert
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...
mehr als 13 Jahre vor | 38
| akzeptiert
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 ...
mehr als 13 Jahre vor | 0
| akzeptiert
How to open the xcel file automatically?
winopen('C:\Documents and Settings\ototemp-u\Desktop\myfile.xlsx')
mehr als 13 Jahre vor | 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.
fast 14 Jahre vor | 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...
fast 14 Jahre vor | 2