Michael Katz - MATLAB Central
photo

Michael Katz

MathWorks

Con actividad desde 2011

Followers: 0   Following: 0

Mensaje

Estadística

All
MATLAB AnswersCodyFile ExchangeFrom 01/11 to 03/25Use left and right arrows to move selectionFrom 01/11Use left and right arrows to move left selectionTo 03/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 Preguntas
15 Respuestas

File Exchange

3 Archivos

Cody

1 Problema
5 Soluciones

CLASIFICACIÓN
643
of 297.560

REPUTACIÓN
120

CONTRIBUCIONES
0 Preguntas
15 Respuestas

ACEPTACIÓN DE RESPUESTAS
0.00%

VOTOS RECIBIDOS
42

CLASIFICACIÓN
2.184 of 20.456

REPUTACIÓN
813

EVALUACIÓN MEDIA
3.80

CONTRIBUCIONES
3 Archivos

DESCARGAS
6

ALL TIME DESCARGAS
7399

CLASIFICACIÓN
35.825
of 159.122

CONTRIBUCIONES
1 Problema
5 Soluciones

PUNTUACIÓN
115

NÚMERO DE INSIGNIAS
4

CONTRIBUCIONES
0 Publicaciones

CONTRIBUCIONES
0 Público Canales

EVALUACIÓN MEDIA

CONTRIBUCIONES
0 Temas destacados

MEDIA DE ME GUSTA

  • 6 Month Streak
  • Revival Level 1
  • Quiz Master
  • Commenter
  • Personal Best Downloads Level 2
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 2
  • First Submission
  • Knowledgeable Level 2
  • First Answer
  • Creator

Ver insignias

Feeds

Ver por

Respondida
MATLAB Mobile 3.1 support 'input' ?
Not yet.

alrededor de 13 años hace | 0

| aceptada

Respondida
setXmlStandalone bug?
Our implementation doesn't forward that document property to the serializer. You'll have to do it yourself, like this: docN...

alrededor de 13 años hace | 0

| aceptada

Respondida
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...

alrededor de 13 años hace | 0

| aceptada

Respondida
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...

alrededor de 13 años hace | 0

| aceptada

Respondida
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(...

alrededor de 13 años hace | 0

Respondida
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...

más de 13 años hace | 0

Respondida
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...

más de 13 años hace | 0

| aceptada

Respondida
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...

más de 13 años hace | 0

Respondida
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: ...

más de 13 años hace | 0

| aceptada

Respondida
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...

más de 13 años hace | 1

| aceptada

Respondida
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...

más de 13 años hace | 38

| aceptada

Respondida
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 ...

casi 14 años hace | 0

| aceptada

Respondida
How to open the xcel file automatically?
winopen('C:\Documents and Settings\ototemp-u\Desktop\myfile.xlsx')

casi 14 años hace | 1

Respondida
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.

alrededor de 14 años hace | 0

Respondida
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...

alrededor de 14 años hace | 2