First
|
Prev |
Next
|
Last
Pages: 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246
Microsoft C# 2010 and Matlab R2009a Hi All, Tools Used: Matlab R2009a Microsoft C# 2010 I have written a Function in Matlab called yahooTickers. I used the Matlab Builder for .Net to convert the yahooTickers function into a .Net DLL. Within my C# 2010 solution, I've referenced the MWArray v2.0 from Matlab and the yahooTickers DLL which I name... 16 Jul 2010 12:06
xlsread, biffparse, compatibility problem of windows and mac Hi, all, I am using a Matlab2009b and I have a working code of... [input_file,pathname] = uigetfile( ... {'*.xls', 'Excel Files (*.xls)'; ... % Recomended file type is xls '*.xlsx', 'Excel 2009 Files (*.xlsx)'; ... '*.*', 'All Files (*.*)'}, ... 'Select files', ... ... 23 Jul 2010 10:16
remove row if contains NaN "Natalie Sin Hwee " <sin.ng09(a)imperial.ac.uk> wrote in message <i1pqh4$pmj$1(a)fred.mathworks.com>... Dear Mathworks users ^^ I have a matrix of 800x2 1 NaN 1 NaN 1 NaN 1 NaN I want to : if row contains NAN, remove row completely so i end up with : 1 97 1 47 2 13 2 97 2 ... 16 Jul 2010 11:00
box plots with 2 different y axes I have three different things I want to plot of the same box plot. Two of the variables have the same units and the third variable has different units. Is there a way to make a box plot with two different y-axis (something like plotyy but for box plots)? ... 16 Jul 2010 11:00
remove row if contains NaN Dear Mathworks users ^^ I have a matrix of 800x2 1 NaN 1 NaN 1 NaN 1 NaN 1 97 1 47 1 NaN 1 NaN 2 NaN 2 NaN 2 NaN 2 13 2 97 2 47 2 NaN 2 NaN ...... continued I want to : if row contains NAN, remove row completely so i end up with : 1 97 1 47 2 13 2 97 2 47 What function can i us... 16 Jul 2010 11:00
assempde There is an error at the assempde help topic. At the end of the topic the exemple says that the pde coefficient is: c = 'c1111|0|c1122|0|c1221|0|c1212|c2211|0|c2222'; but the correct would be: c = 'c1111|0|c1122|0|c1221|c1212|0|c2211|0|c2222'; I hope it helps, Diego C. ... 16 Jul 2010 11:00
Identifying variables while importing Hi, I'm importing a time series into MATLAB. I have over 20 columns. I'm using xlsread and here is the code : [Data Titles] = xlsread('Name of file', 'Sheet', 'Range') After that, I would like to separate all the different variables and give them a different name. I know I can access the 'Data' matrice to g... 16 Jul 2010 12:06
plot3 : colour proportional to height? Hi, I'm using the function plot3 to display a 3D plot of a set of data points. Taking the following simple example: x = 0:0.1:10; plot3(x.^2,x,x) grid on axis square How would I call plot3 so that the colour of the line is a function of the height. Ideally I would like a light crey colour for low values... 16 Jul 2010 15:27
How to repeat a vector to creat a matrix How can I create a matrix from a repeated vector. For example, I have a=[ 1 2 3 4 5 6 7 ]; How can I create the following matrix A=[1 2 3 4 5 6 7 1 2 3 4 5 6 7 1 2 3 4 5 6 7 1 2 3 4 5 6 7 1 2 3 4 5 6 7 1 2 3 4 5 6 7 ]; I can use a for loop, but I am wondering if there is a bett... 19 Jul 2010 01:38
MATLAB crop something in a figure, how to resolve it? Dear all Today, I met with a problem that MATLAB can crop something of a figure. Following code is an example: h = figure('menubar', 'none', 'toolbar', 'none', 'position', [0, 0, 600 450]); movegui(h, 'center'); plot(rand(10,2)); xlabel('This is X label'); now, you will see a normal figure that contained two pl... 18 Jul 2010 03:04 |