Beantwortet
Inserting current date in string
Use: str=['Today is ',date]

mehr als 14 Jahre vor | 0

Beantwortet
read data from .m file
Variables are not stored in .m files as they are ASCII, Variables are usually stored in .mat files that matlab can read. E.g....

mehr als 14 Jahre vor | 0

Beantwortet
Matlab startup hangs
As far as I know, MATLAB R2011b does not initallize the X Server on MATLAB as it used to do upto R2010a . Are you sure you are ...

mehr als 14 Jahre vor | 0

Beantwortet
Parallel Computing Toolbox on local machine
Hi, here is a link for a workshop I conducted.. <http://docs.uabgrid.uab.edu/wiki/MATLAB_workshop_2011#Workshop_Demo.27s> ...

mehr als 14 Jahre vor | 0

Beantwortet
Error opening matlabpool
Can you try validating your local parallel configuration. Parallel > Manage Configuration> select 'local'> Start Validation. ...

mehr als 14 Jahre vor | 0

Beantwortet
how can i know which toolbox a function is calling?
Use a 'which FucntionName' command Eg. >> which qfunc /Applications/MATLAB_R2011b.app/toolbox/comm/comm/qfunc.m ...

mehr als 14 Jahre vor | 4

Beantwortet
inverse loop
Try, for i=180:-1:1 for j =180:-1:1 i j end end

mehr als 14 Jahre vor | 0

Beantwortet
counting the duplicates
You could use the unique command <http://www.mathworks.com/help/techdoc/ref/unique.html> longwords={'banana';'milk';'...

mehr als 14 Jahre vor | 0

Beantwortet
Instal Matlab 2011a on Ubuntu 11.10
Hey, I have installed MATLAB on Ubuntu and it was not a big issue. Only had some trouble with creating a launcher. Found some i...

mehr als 14 Jahre vor | 1

| akzeptiert

Beantwortet
Parallel Computing Toolbox: createParallelJob, createTask, submit --- nothing happens
This looks like an incompatibility in the version of the PBS scheduler with MATLAB.. I do not have a lot of experience with ...

mehr als 14 Jahre vor | 0

Beantwortet
mutiplying a role of number and seach or max and min value
Kron is a good way to do it, However you could code multiple for loops and work it.. I hope this was not a homework problem.. ...

mehr als 14 Jahre vor | 0

Beantwortet
Help with dot operator
hmm,, this code works fine now: %Design_Principles_3_MATLAB_Assignment.m %Script to find minimum peak force required from ...

mehr als 14 Jahre vor | 0

Beantwortet
Help with dot operator
In your case Z=[1x19] and A=[1x23], both the matrices are of different dimensions and hence you get a dimension mismatch error.....

mehr als 14 Jahre vor | 0

Beantwortet
Mac-PC competability in .fig files
It could be a versions issue what versions of MATLAB are you using on the PC and MAC respectively? I have just imported *.fi...

mehr als 14 Jahre vor | 0

Beantwortet
About matlab in MacOS
Matlab is availble for the MAC OSX 64 bit. I have been using it for a long time and works fine. It had some bugs in the paralle...

mehr als 14 Jahre vor | 1

Beantwortet
Std in matlab different from stdevp in excel
I get the same answer for stddev and mean from MATLAB and Excel a = [ 1 1 1 1 1 3 2 4 5 6 2 6 2 6 1] >> std(a) ans = ...

mehr als 14 Jahre vor | 1

| akzeptiert

Frage


Running MATLAB from Excel - Matlab Builder Ex or Matlab Spredsheet link EX?
I have a number of calculations to be performed by a MATLAB M file and have all my data in an Excel sheet. The m file is not...

mehr als 14 Jahre vor | 2 Antworten | 1

2

Antworten

Beantwortet
best budget desktop harware for high performance of matlab
'Budget' is a subjective term. Anyways as regards to a fairly cost effective configuration for you desktop I would recommend th...

mehr als 14 Jahre vor | 3

| akzeptiert

Beantwortet
read two different tracks in matlab
You can use software like audacity to split the single audio file with two into two audio files. Then you can import them into m...

mehr als 14 Jahre vor | 0

| akzeptiert

Beantwortet
How to determine if license is concurrent?
A concurrent network license allows users to run MATLAB concurrently (one user at a time per license key) on any computer. This ...

mehr als 14 Jahre vor | 1

Beantwortet
Problems with legend
Hmm, intial walkthorugh your code legend ('zeiglersum','foerdesfaktor,'-4.*grinismaksimum', '3.*kristiansenstrippel', ...

mehr als 14 Jahre vor | 0

Beantwortet
NVIDIA GPU recommendation: Mac (OSX 10.6.x - 64bit server)
I would suggest going for the newer 4000 card as it has a better specs and occupies less space (only 1 slot as opposed to the 2 ...

mehr als 14 Jahre vor | 0

Beantwortet
GPU wrong results
Georgios, I ran it on our GPU pool gpuDevice tic () a = rand(2^10,2^10,'single'); G = gpuArray(a); F = fft2(G); err ...

mehr als 14 Jahre vor | 2

Beantwortet
Matlab on 16 core desktop machine
You just need to download and install MATLAB and run the validation on the local configuration to confirm its working. You go ...

mehr als 14 Jahre vor | 1

| akzeptiert

Beantwortet
speed up computation of huge matrix?
Use a GPU card and gpuArray. Our Tesla M2070-Q (448 cores, 6GB) performs this in 0.02125 sec. I have performed a similar (500...

mehr als 14 Jahre vor | 1

Beantwortet
MatLab R2011a detects 8 physical cores when I only have 4!
Also if you do not want to use hyper-threading or run just 1 instalnce of matlab/physical core you can give the command mat...

mehr als 14 Jahre vor | 1

Beantwortet
Need help creating a loop
You might find this useful: <http://www.mathworks.com/matlabcentral/fileexchange/29554-leibniz-approximation-of-pi> Hope t...

mehr als 14 Jahre vor | 2

Beantwortet
GPU programming
Shabab, as far as I know MATLAB requires an NVIDIA GPU with a compute capability of 1.3 or higher. It is because MATLAB uses...

mehr als 14 Jahre vor | 3

| akzeptiert

Beantwortet
Time difference between two sets of times in hrs mins and seconds.. GUI if possible
Hi Sharon, I have written a code for this a long time ago. Hope this helps.. close all % Prompt to enter the time us...

mehr als 14 Jahre vor | 2

| akzeptiert

Beantwortet
File .txt in MatLab
If my data is in the file new.txt fid=fopen('new.txt'); C = textscan(fid, '%s %s %f32 %d8 %u %f %f %s %f'); fclose(fid); ...

mehr als 14 Jahre vor | 2

Mehr laden