First
|
Prev |
Next
|
Last
Pages: 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
Error durin installation of Matlab Runtime Environment Hello, I have stumbled upon a problem during the installation of MCR. When I launch the installer, I get a prompt for the installing of a package named VCREDIST_X86. I hit INSTALL and after that the installation resumes. After a few minutes I get the error: "Error 1335. The cabinet file 'Data1.cab' required f... 1 Jul 2010 04:31
adaline as adaline fun can be used for forecasting can this newff() fun b used for above application to calculate weights if suppose u hve 600 entries of data how will adaline automatically divide the data into target and testing and then finally into forecasting reply ... 1 Jul 2010 04:31
Replacing a NaN by it nanmean You might want to obtain the NaN index matrix: A_nan = isnan(A) A_nan = 1 0 0 0 0 0 0 0 0 1 1 0 and then replace columnwise: A(A_nan(:,1),1) = 6 A = 6 0 3 7 2 6 5 1 2 6 NaN 5 A(A_nan(:,2),... 1 Jul 2010 03:26
Area between graphs Hi, I have two graphs, f and g, plotted in one figure. I want to color the area bounded between those two graphs in, say, gray. What is the easiest way to do this? (I tried to look in the Area() function, but this wasn't very simple for me to use..). Thanks a lot, Asaf ... 4 Jul 2010 05:47
Extract data from Java Applet? Hello, Is there a way to extract (parse) in matlab data that is located inside a JAVA applet. There a live weather feed that I want to record and analyze later. I wish I can give you the link but it is through my university and you need a login to access the applet. Thanks for the help. ps. URLREAD will not wor... 1 Jul 2010 03:26
Replacing a NaN by it nanmean Hi Joerg, ....Yes. Column NaN's by it corresponding nanmean. ... 1 Jul 2010 03:26
matlab error help im trying to build a program where im creating a waveform signal based on the type of waveform selected (sine, sawtooth etc). The following is an initial program i wrote and its giving me the following error: gg='sin'; ll=0:0.01:10; sigg=gg(ll); ??? Subscript indices must either be real positive integers... 1 Jul 2010 14:27
MEX in Matlab 7.10, 64 bit, Windows 7 "Julian Xue" <jzxue(a)hotmail.com> wrote in message <hoc630$lm7$1(a)fred.mathworks.com>... Hi! I was wondering if anyone got MEX to work under 64 bit Windows 7, using Visual C++ Express Edition 9.0? I followed all instructions on http://www.mathworks.com/support/solutions/en/data/1-6IJJ3L/index.html?solution=1-6I... 4 Jul 2010 02:34
Replacing a NaN by it nanmean Hi all, I need your help on this. Suppose you have the matrix: A = [NaN 0 3;7 2 6;5 1 2;NaN NaN 5]; and you need to replace the NaN's column elements by its nanmeans to get, R = [6 0 3;7 2 6;6 1 5]; I would appreciate any hint. Thx ... 1 Jul 2010 02:22
Determinant of a non-square matrix? Is there a determinant of a non-square matrix? det ([sym('a'), sym('b')]) ans = a ... 1 Jul 2010 09:57 |