-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I have some Matlab functions defined in .m files and I'd like to import them into Matlab (as in I'd like them to form part of the commands). Is this possible please and how can I do this?
Thank you very much and regards,
Krt_Malta
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
hi,
i have a very big problem.
ich wrote a programm which is using a matlab dll. i build some classes with the matlab .net builder. it runs on my pc :)
the problem is, i want to use ist on a pc without matlab. so i installed mcr, but it dont run :(
what are the steps i should do? the system variable…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi All!
I'm having an issue interacting between Matlab and .NET. I've managed to call .NET methods from Matlab code and vice versa. However, if I call a .NET method that, in turn, instantiates a Matlab object, it crashes (with a type initialization exception).
Think about this scenario: a .NET…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
when i tried to update some part of a matrix, i got the following error message:
??? Assignment has fewer non-singleton rhs dimensions than non-singleton subscripts
My code tries to update some values of a matrix that represent a binary image. My code is as follows:
outImage(3:5,2:4,1) =…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I tried to update some part of a matrix, I got the following error message:
??? Assignment has fewer non-singleton rhs dimensions than non-singleton subscripts
My code tries to update some values of a matrix that represent a binary image. My code is as follows:
outImage(3:5,2:4,1) = max(imBinary(3:5…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm stuck on an aggregation problem that I can't get to the bottom of.
I have some data which is best summarized as follows
id |phraseId|seqNum|word
=========================
1 |1 |1 |hello
2 |1 |2 |world
3 |2 |1 |black
4 |2 |2 |and
5 |2 |3 …
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
In C# it is possible to concatenate strings in several different ways:
Using the concatenation operator:
var newString = "The answer is '" + value + "'.";
Using String.Format:
var newString = String.Format("The answer is '{0}'.", value);
Using String.Concat:
var newString = String.Concat("The…
>>> More
-
as seen on SQL Blog
- Search for 'SQL Blog'
This week, T-SQL Tuesday is being hosted by Jes Borland ( blog | twitter ), and the theme is " Aggregate Functions ." When people think of aggregates, they tend to think of MAX(), SUM() and COUNT(). And occasionally, less common functions such as AVG() and STDEV(). I thought I would write a quick…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
This might be a silly question but it struck me, and here i ask.
<?php
$x="Hi";
$y=" There";
$z = $x.$y;
$a = "$x$y";
echo "$z"."<br />"."$a";
?>
$z uses the traditional concatenation operator provided by php and concatenates, conversely $a doesn't,
My questions:
a. by…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How can I concatenate two char columns within a perform screen?
example:
table sample
col1 char(1),
col2 char(1)
.
.
after editadd of sample
let label_3 = sample.col1 + sample.col2
.. this didn't work, I even tried using subscripts for the 2 cols but no dice!
>>> More