Statistics
RANK
2 965
of 295 486
REPUTATION
20
CONTRIBUTIONS
0 Questions
18 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
4
RANK
13 612 of 20 236
REPUTATION
19
AVERAGE RATING
0.00
CONTRIBUTIONS
1 File
DOWNLOADS
1
ALL TIME DOWNLOADS
197
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
How do I print a "%" when using fprintf?
Usage of char or '%' is possible. fprintf('Percent Error: %0.8f %s', percentError,char(37)); or fprintf('Percent Error: %0.8f...
ungefär ett år ago | 0
fsolve to find circle intersections
By first applying coordinate transformations a reduced algebra solution is possible. Given Circle (x1,y1,R) and Circle (x2,y2,P...
mer än ett år ago | 0
How to add files directly from Google Drive to MATLAB online?
I assume you want to download your zip file to your HD. Your html content problems will be solved by the below. The function we...
mer än ett år ago | 1
how can i read image from my google drive, process it and sent the output to my email address?, image after image, automatically?
Two changes are required to download from a google drive. 1) Set the privilege to Anyone with the link for the file using the ...
mer än ett år ago | 0
How can I upload / download image from my google drive using matlab?
Two changes are required to download from a google drive. 1) Set the privilege to Anyone with the link for the file using the ...
mer än ett år ago | 0
How can I determine what add-ons I have installed?
ver This function will give summary of Matlab installed along with Toolboxes
nästan 2 år ago | 1
How to write literal text from character array to a file
Use fwrite. str='\a%s'; fileID=fopen('AllCharFile.txt','w') fwrite(fileID,double(str)); fclose(fileID)
ungefär 3 år ago | 0
How do I multiply two 'int32' data type matrices in MATLAB?
A special case of uint32/64 matrix multiply is where x is a binary matrix and y is a uint32/64 vector. This can be calculated v...
mer än 4 år ago | 0
How do I multiply two 'int32' data type matrices in MATLAB?
function z = mtimes(x,y) if (isscalar(x) || isscalar(y)) z = x .* y; return; end m = size(x,1); n = si...
mer än 4 år ago | 0
how to download zip files, unzip XLS, and load into MATLAB
function site_read_zip % % place self in write directory web='http://www.nemweb.com.au/REPORTS/CURRENT/HistDemand...
ungefär 11 år ago | 0
using if/else statements to find molecular weight of compounds given the info from a string
The related <http://www.mathworks.com/matlabcentral/cody/problems/1856-molecule-atomic-wt-chons-molecules Cody Challenge> was so...
ungefär 11 år ago | 1
| accepted
using if/else statements to find molecular weight of compounds given the info from a string
I created a Cody Challenge <http://www.mathworks.com/matlabcentral/cody/problems/1856-molecule-atomic-wt-chons-molecules Molecul...
ungefär 11 år ago | 1
infinite series for pi
Vectorization and output %AngelsaAtWar %http://mathworld.wolfram.com/PiFormulas.html % The ./ and .^ are needed...
nästan 12 år ago | 0
Replace percentage of existing values with new value
function replace25 m = randi(4, 9, 9) newvalue = 5; % determine qty of values 1 thru 4, a(1) qty 1, a(4) number 4s ...
ungefär 12 år ago | 0
| accepted
PLotting noisy signal matlab
If you want a specific set of points a third vector can be created, v=[1 4 9 12]; The plot(t(v),x(v)) will only use the subset ...
ungefär 12 år ago | 0
How to Plot a matrix?
Visualizing a matrix for relative magnitudes can be done with surf or I like imagesc. A=randi(256,[64 128]); figure;imag...
mer än 12 år ago | 0
to find variables in a string
For variables use symvar(str). It will create a cell array of variable names. Finding "built-in" functions can be performed u...
mer än 12 år ago | 0
| accepted
Color JPG image saved by imwrite() incompatible with Web Browser.
The array may be lacking the full data structure. The site http://radio.feld.cvut.cz/matlab/techdoc/printing/export21.html give...
nästan 13 år ago | 0