Month: July 2024
How can I use HDL Coder with an unsupported or custom FPGA board?
MathWorks provides integrated solutions for popular FPGA evaluation boards listed here:Hardware support from HDL Coder
However, the evaluation board that I use is not supported, or I created a custom board for moving to production. How can I use HDL Coder with an unsupported or custom FPGA board?MathWorks provides integrated solutions for popular FPGA evaluation boards listed here:Hardware support from HDL Coder
However, the evaluation board that I use is not supported, or I created a custom board for moving to production. How can I use HDL Coder with an unsupported or custom FPGA board? MathWorks provides integrated solutions for popular FPGA evaluation boards listed here:Hardware support from HDL Coder
However, the evaluation board that I use is not supported, or I created a custom board for moving to production. How can I use HDL Coder with an unsupported or custom FPGA board? hdl, coder, unsupported, target, platform, device, board MATLAB Answers — New Questions
Creation of a link to an Excel table on Sharepoint in MS Access
Hello everyone,
I am trying to add an Excel table which is on Sharepoint as a linked table in MS Access, similar to how I link local data tables to Access. Is there a possibility here? Unfortunately, I always load the Sharepoint list, but I want to access the Excel directly. Thank you in advance.
Best regards
Hello everyone,I am trying to add an Excel table which is on Sharepoint as a linked table in MS Access, similar to how I link local data tables to Access. Is there a possibility here? Unfortunately, I always load the Sharepoint list, but I want to access the Excel directly. Thank you in advance.Best regards Read More
How Can I Resolve Q.B Desktop Error Code 40001
I’m encountering error code 40001 while using Q.B Desktop. This issue is disrupting my workflow, and I’m unsure how to resolve it. Could you please provide guidance on troubleshooting steps or solutions to fix this error?
I’m encountering error code 40001 while using Q.B Desktop. This issue is disrupting my workflow, and I’m unsure how to resolve it. Could you please provide guidance on troubleshooting steps or solutions to fix this error? Read More
What is error code 404 in Q.B Desktop?
I’ve been encountering Quick-Books Error 404 frequently while trying to sync my bank transactions. The error message says “Page not found.” I’ve checked my internet connection and firewall settings, but the issue persists. Has anyone faced this before? Any suggestions on how to fix it? Thanks!
I’ve been encountering Quick-Books Error 404 frequently while trying to sync my bank transactions. The error message says “Page not found.” I’ve checked my internet connection and firewall settings, but the issue persists. Has anyone faced this before? Any suggestions on how to fix it? Thanks! Read More
How to Fix Q.B Sync Manager Not Working Error after update?
My Quick-Books Sync Manager stopped working suddenly. I’ve tried restarting my computer and reinstalling Quick-Books, but the issue persists. Has anyone else faced this problem? Any suggestions on how to fix it would be greatly appreciated.
My Quick-Books Sync Manager stopped working suddenly. I’ve tried restarting my computer and reinstalling Quick-Books, but the issue persists. Has anyone else faced this problem? Any suggestions on how to fix it would be greatly appreciated. Read More
How can I remove vocals from a song without losing quality?
I’ve recently been trying to remove vocals from a song, but I wanted to do it with as little loss of quality as possible. I’ve looked up a lot of stuff and tried several software programs, but they all don’t work very well and the quality always suffers a little. I wanted to ask for help on this forum to see if anyone knows a better way or software to achieve this effect. I hope you can share your experiences and suggestions, thank you!
I’ve recently been trying to remove vocals from a song, but I wanted to do it with as little loss of quality as possible. I’ve looked up a lot of stuff and tried several software programs, but they all don’t work very well and the quality always suffers a little. I wanted to ask for help on this forum to see if anyone knows a better way or software to achieve this effect. I hope you can share your experiences and suggestions, thank you! Read More
POSTGRE SQL
Hi I am getting this error
ERROR: invalid input syntax for type integer: “Bangalore” CONTEXT: COPY ball, line 2, column inning: “Bangalore” SQL state: 22P02
How can I fix this????
My code-
CREATE TABLE Matches (
id INT,
city int,
date DATE,
player_of_match VARCHAR,
venue VARCHAR,
neutral_venue int,
team1 VARCHAR,
team2 VARCHAR,
toss_winner VARCHAR,
toss_decision VARCHAR,
winner VARCHAR,
result VARCHAR,
result_margin INT,
eliminator VARCHAR,
method VARCHAR,
umpire1 VARCHAR,
umpire2 VARCHAR
);
Hi I am getting this error ERROR: invalid input syntax for type integer: “Bangalore” CONTEXT: COPY ball, line 2, column inning: “Bangalore” SQL state: 22P02 How can I fix this????My code- CREATE TABLE Matches (id INT,city int,date DATE,player_of_match VARCHAR,venue VARCHAR,neutral_venue int,team1 VARCHAR,team2 VARCHAR,toss_winner VARCHAR,toss_decision VARCHAR,winner VARCHAR,result VARCHAR,result_margin INT,eliminator VARCHAR,method VARCHAR,umpire1 VARCHAR,umpire2 VARCHAR); Read More
Data Validation cell not working other sheet
Working in Sheet 1 and in cell B2 I am using IF(B2=10,Sheet 2 cell C2,””)
In sheet 2 cell C2 is having data validation list in it but it is not showing data validation list in Sheet 1 after using formula.
Can anyone help please?
Working in Sheet 1 and in cell B2 I am using IF(B2=10,Sheet 2 cell C2,””) In sheet 2 cell C2 is having data validation list in it but it is not showing data validation list in Sheet 1 after using formula. Can anyone help please? Read More
Extended Event with app_name doesn’t work properly
Hello,
When I create an extended event to capture all the SELECT on the instance, it works :
CREATE EVENT SESSION [YourSession] ON SERVER
ADD EVENT sqlserver.sql_statement_completed(
ACTION(sqlserver.client_hostname,sqlserver.database_name,sqlserver.nt_username,sqlserver.session_id,sqlserver.session_nt_username,sqlserver.sql_text,sqlserver.username)
WHERE ([sqlserver].[like_i_sql_unicode_string]([sqlserver].[sql_text],N’%SELECT%’)))
ADD TARGET package0.event_file(SET filename=N’S:Program FilesMicrosoft SQL ServerMSSQL16.FORMATIONMSSQLMSSQLBackupYourSession_Target.xel’,max_file_size=(2),max_rollover_files=(2))
WITH (MAX_MEMORY=2048 KB,EVENT_RETENTION_MODE=ALLOW_MULTIPLE_EVENT_LOSS,MAX_DISPATCH_LATENCY=3 SECONDS,MAX_EVENT_SIZE=0 KB,MEMORY_PARTITION_MODE=NONE,TRACK_CAUSALITY=OFF,STARTUP_STATE=OFF)
GO
But, when I use the app_name ACTION, it doesn’t work anymore :
CREATE EVENT SESSION [YourSession] ON SERVER
ADD EVENT sqlserver.sql_statement_completed(
ACTION(SQLSatellite.AppName,sqlserver.client_hostname,sqlserver.database_name,sqlserver.nt_username,sqlserver.session_id,sqlserver.session_nt_username,sqlserver.sql_text,sqlserver.username)
WHERE ([sqlserver].[like_i_sql_unicode_string]([sqlserver].[sql_text],N’%SELECT%’)))
ADD TARGET package0.event_file(SET filename=N’S:Program FilesMicrosoft SQL ServerMSSQL16.FORMATIONMSSQLMSSQLBackupYourSession_Target.xel’,max_file_size=(2),max_rollover_files=(2))
WITH (MAX_MEMORY=2048 KB,EVENT_RETENTION_MODE=ALLOW_MULTIPLE_EVENT_LOSS,MAX_DISPATCH_LATENCY=3 SECONDS,MAX_EVENT_SIZE=0 KB,MEMORY_PARTITION_MODE=NONE,TRACK_CAUSALITY=OFF,STARTUP_STATE=OFF)
GO
Do you have any clue about why the extended event doesn’t capture the SELECT when the action AppName is selected ?
Regards,
Alktor
Hello, When I create an extended event to capture all the SELECT on the instance, it works :CREATE EVENT SESSION [YourSession] ON SERVERADD EVENT sqlserver.sql_statement_completed(ACTION(sqlserver.client_hostname,sqlserver.database_name,sqlserver.nt_username,sqlserver.session_id,sqlserver.session_nt_username,sqlserver.sql_text,sqlserver.username)WHERE ([sqlserver].[like_i_sql_unicode_string]([sqlserver].[sql_text],N’%SELECT%’)))ADD TARGET package0.event_file(SET filename=N’S:Program FilesMicrosoft SQL ServerMSSQL16.FORMATIONMSSQLMSSQLBackupYourSession_Target.xel’,max_file_size=(2),max_rollover_files=(2))WITH (MAX_MEMORY=2048 KB,EVENT_RETENTION_MODE=ALLOW_MULTIPLE_EVENT_LOSS,MAX_DISPATCH_LATENCY=3 SECONDS,MAX_EVENT_SIZE=0 KB,MEMORY_PARTITION_MODE=NONE,TRACK_CAUSALITY=OFF,STARTUP_STATE=OFF)GO But, when I use the app_name ACTION, it doesn’t work anymore :CREATE EVENT SESSION [YourSession] ON SERVERADD EVENT sqlserver.sql_statement_completed(ACTION(SQLSatellite.AppName,sqlserver.client_hostname,sqlserver.database_name,sqlserver.nt_username,sqlserver.session_id,sqlserver.session_nt_username,sqlserver.sql_text,sqlserver.username)WHERE ([sqlserver].[like_i_sql_unicode_string]([sqlserver].[sql_text],N’%SELECT%’)))ADD TARGET package0.event_file(SET filename=N’S:Program FilesMicrosoft SQL ServerMSSQL16.FORMATIONMSSQLMSSQLBackupYourSession_Target.xel’,max_file_size=(2),max_rollover_files=(2))WITH (MAX_MEMORY=2048 KB,EVENT_RETENTION_MODE=ALLOW_MULTIPLE_EVENT_LOSS,MAX_DISPATCH_LATENCY=3 SECONDS,MAX_EVENT_SIZE=0 KB,MEMORY_PARTITION_MODE=NONE,TRACK_CAUSALITY=OFF,STARTUP_STATE=OFF)GO Do you have any clue about why the extended event doesn’t capture the SELECT when the action AppName is selected ? Regards,Alktor Read More
Why do I get a warning that the code coverage result is empty because the file is invalid?
I’m trying to add code coverage to my unit test suite. There is one .mlapp file that gives this warning:
Warning: Coverage result is empty for /MyPath/myApp.mlapp because the file is invalid.
How can I find out what is wrong with the file? The app works, so I don’t know why it would be "invalid." Note: a blank .mlapp file does not give the same warning.I’m trying to add code coverage to my unit test suite. There is one .mlapp file that gives this warning:
Warning: Coverage result is empty for /MyPath/myApp.mlapp because the file is invalid.
How can I find out what is wrong with the file? The app works, so I don’t know why it would be "invalid." Note: a blank .mlapp file does not give the same warning. I’m trying to add code coverage to my unit test suite. There is one .mlapp file that gives this warning:
Warning: Coverage result is empty for /MyPath/myApp.mlapp because the file is invalid.
How can I find out what is wrong with the file? The app works, so I don’t know why it would be "invalid." Note: a blank .mlapp file does not give the same warning. code coverage MATLAB Answers — New Questions
Error Message “‘This package uses the Matlab command xlsread to read from Excel files….” Matlab 6/Matlab 7
Dear all,
when I’m running the file DSGEFig1.m a window pops up, asking for "Specify Excel: Enter the name of the Excel input file". Now the problem is that when I enter the excel file and click OK, I get the following error message:
‘This package uses the Matlab command xlsread to read from Excel files.’,…
‘This command appeared for the first time in Matlab 6. Your version of Matlab is older than version 6.’,…
‘You must modify the file DSGEReadExcel to read in data etc in some other way. Or upgrade Matlab …’
I use the Matlab version 2023b.
I’ve read a previous post that one can try
which -all xlsread
and check for third party toolboxes and support packages. However, when I enter this code line, I get
/Applications/MATLAB_R2023b.app/toolbox/matlab/iofun/xlsread.m
As I see it, third party toolboxes and support packages are not the problem in my case.
I tried to change the code in DSGEReadExcel from xlsread to readtable and readmatrix but I still get the same error message.
Can someone help me and tell me, how I can solve the problem?
Many thanks for your help!Dear all,
when I’m running the file DSGEFig1.m a window pops up, asking for "Specify Excel: Enter the name of the Excel input file". Now the problem is that when I enter the excel file and click OK, I get the following error message:
‘This package uses the Matlab command xlsread to read from Excel files.’,…
‘This command appeared for the first time in Matlab 6. Your version of Matlab is older than version 6.’,…
‘You must modify the file DSGEReadExcel to read in data etc in some other way. Or upgrade Matlab …’
I use the Matlab version 2023b.
I’ve read a previous post that one can try
which -all xlsread
and check for third party toolboxes and support packages. However, when I enter this code line, I get
/Applications/MATLAB_R2023b.app/toolbox/matlab/iofun/xlsread.m
As I see it, third party toolboxes and support packages are not the problem in my case.
I tried to change the code in DSGEReadExcel from xlsread to readtable and readmatrix but I still get the same error message.
Can someone help me and tell me, how I can solve the problem?
Many thanks for your help! Dear all,
when I’m running the file DSGEFig1.m a window pops up, asking for "Specify Excel: Enter the name of the Excel input file". Now the problem is that when I enter the excel file and click OK, I get the following error message:
‘This package uses the Matlab command xlsread to read from Excel files.’,…
‘This command appeared for the first time in Matlab 6. Your version of Matlab is older than version 6.’,…
‘You must modify the file DSGEReadExcel to read in data etc in some other way. Or upgrade Matlab …’
I use the Matlab version 2023b.
I’ve read a previous post that one can try
which -all xlsread
and check for third party toolboxes and support packages. However, when I enter this code line, I get
/Applications/MATLAB_R2023b.app/toolbox/matlab/iofun/xlsread.m
As I see it, third party toolboxes and support packages are not the problem in my case.
I tried to change the code in DSGEReadExcel from xlsread to readtable and readmatrix but I still get the same error message.
Can someone help me and tell me, how I can solve the problem?
Many thanks for your help! matlab6, matlab7, excel, xlsread MATLAB Answers — New Questions
Which license should I choose for a single server with multiple users
I’m the admin of a server and I need to obtain a MATLAB license. Some details:
Single server
We are using SLURM to balance the workload
There are about 20 users in total
There are about ~5 users that need MATLAB for now. This might be more in the future
Required toolboxes (at least for now): Image Processing, Signal Processing, Optimization
I’ve read online about different options (e.g. network license, parallel server, individual license vs designated computer license), but I’m still confused as to what should I get for this case.I’m the admin of a server and I need to obtain a MATLAB license. Some details:
Single server
We are using SLURM to balance the workload
There are about 20 users in total
There are about ~5 users that need MATLAB for now. This might be more in the future
Required toolboxes (at least for now): Image Processing, Signal Processing, Optimization
I’ve read online about different options (e.g. network license, parallel server, individual license vs designated computer license), but I’m still confused as to what should I get for this case. I’m the admin of a server and I need to obtain a MATLAB license. Some details:
Single server
We are using SLURM to balance the workload
There are about 20 users in total
There are about ~5 users that need MATLAB for now. This might be more in the future
Required toolboxes (at least for now): Image Processing, Signal Processing, Optimization
I’ve read online about different options (e.g. network license, parallel server, individual license vs designated computer license), but I’m still confused as to what should I get for this case. licenses, matlab, server MATLAB Answers — New Questions
MS Bookings status not bookable after accepting the invite
We have 3 members of staff who have accepted the invite but still appear as not bookable, how can we fix this?
We have 3 members of staff who have accepted the invite but still appear as not bookable, how can we fix this? Read More
Issue with Failover Cluster Manager Settings: Exceeding Maximum Failures per Specified Period
I am experiencing an issue with the Failover Cluster Manager setup using Failover Cluster Instances (FCI) on two virtual machines. Specifically, I have configured the following settings under Roles > [Role Name] > Properties > Failover tab:
Maximum failures in the specified period: 2Period (hours): 4
Despite applying these settings, the nodes seem to failover more than the specified limit, sometimes 4 to 5 times within the 4-hour period.
Details of my setup: I am using sql server 2022; Oracle VirtualBox VMs
I would appreciate any assistance or guidance on how to resolve this issue
Regards,
Shahezar
I am experiencing an issue with the Failover Cluster Manager setup using Failover Cluster Instances (FCI) on two virtual machines. Specifically, I have configured the following settings under Roles > [Role Name] > Properties > Failover tab:Maximum failures in the specified period: 2Period (hours): 4 Despite applying these settings, the nodes seem to failover more than the specified limit, sometimes 4 to 5 times within the 4-hour period. Details of my setup: I am using sql server 2022; Oracle VirtualBox VMsI would appreciate any assistance or guidance on how to resolve this issueRegards,Shahezar Read More
How do I get rid of script error in Q.B?
I’m experiencing a persistent script error when using Q.B on my Windows 11 system. The error message often appears while navigating through various functions within Quick`Books, disrupting my workflow.
I’ve tried clearing my browser cache and updating my browser, but the issue persists. Could you please guide me on how to resolve this script error?
I’m experiencing a persistent script error when using Q.B on my Windows 11 system. The error message often appears while navigating through various functions within Quick`Books, disrupting my workflow.I’ve tried clearing my browser cache and updating my browser, but the issue persists. Could you please guide me on how to resolve this script error? Read More
How do I fix script error in Q.B Desktop after update?
Hi all, I’m experiencing a persistent script error in Quick-Books whenever I try to access certain features. The error message pops up frequently and interrupts my workflow. Has anyone else encountered this issue and found a solution? Any help would be greatly appreciated. Thanks!
Hi all, I’m experiencing a persistent script error in Quick-Books whenever I try to access certain features. The error message pops up frequently and interrupts my workflow. Has anyone else encountered this issue and found a solution? Any help would be greatly appreciated. Thanks! Read More
Problem with deleting Unread/Read in Outlook
Hi
I Just finished a migration to 365 and everything was great but for some users they are experiencing a kind of delay in their new outlook profiles. this problem is only with people with big mailboxes 73 GB and 33 GB for example. if they try to delete or mark mail as read or unread it doesn’t work unless you close Outlook and open it again.
it worth also mentioning that the user are working on Remote desktop with Office 2019 installed and outlook cach is off through a group policy.
Hi I Just finished a migration to 365 and everything was great but for some users they are experiencing a kind of delay in their new outlook profiles. this problem is only with people with big mailboxes 73 GB and 33 GB for example. if they try to delete or mark mail as read or unread it doesn’t work unless you close Outlook and open it again.it worth also mentioning that the user are working on Remote desktop with Office 2019 installed and outlook cach is off through a group policy. Read More
Window automatically lowers the brightness!
Hi everyone,
I recently bought a new laptop (Asus Vivo-book 15S) which operates on Windows 11.
the problem I am facing is very unique id say.
the thing is
if i have opened two windows on same desktop side by side..
so as soon as I switch to other window the first windows gets darken automatically
how do I fix that its soo annoying!
which ever window I choose gets highlighted and other windows gets darker
idk how this happened
any fixes?
Hi everyone,I recently bought a new laptop (Asus Vivo-book 15S) which operates on Windows 11.the problem I am facing is very unique id say. the thing is if i have opened two windows on same desktop side by side..so as soon as I switch to other window the first windows gets darken automaticallyhow do I fix that its soo annoying! which ever window I choose gets highlighted and other windows gets darkeridk how this happened any fixes? Read More
Does anybody know a safe Facebook video downloader for PC Windows 11?
Hello, I’m looking for a good Facebook video downloader for my Windows 11 computer. I’ve tried several before, but none of them seemed ideal. Either they had too many annoying ads, or they were not safe enough to use. I mainly want to download some tutorial videos for offline viewing and learning. Can anyone recommend a tool that is both safe and stable? I hope it’s easy to use and virus-free. If you have any good recommendations, please let me know. Thank you very much!
Hello, I’m looking for a good Facebook video downloader for my Windows 11 computer. I’ve tried several before, but none of them seemed ideal. Either they had too many annoying ads, or they were not safe enough to use. I mainly want to download some tutorial videos for offline viewing and learning. Can anyone recommend a tool that is both safe and stable? I hope it’s easy to use and virus-free. If you have any good recommendations, please let me know. Thank you very much! Read More
Multi-Count Query to power Dashboard Chart
I want to create a dashboard to show the number of items assigned a value in a custom multi-select attribute. For example, a customer field called Facet1 has set values that are multi-select. The values go from Value1 to Value20. I want to create a query that will count the number of epics that have been tagged with each value.
I can create a query that counts the number of a specific value, but I want one that counts all values, which I can use to power a graph on a dashboard. Can you please help me construct a query that counts multiple values and displays them in a dashboard chart? Thank you.
I want to create a dashboard to show the number of items assigned a value in a custom multi-select attribute. For example, a customer field called Facet1 has set values that are multi-select. The values go from Value1 to Value20. I want to create a query that will count the number of epics that have been tagged with each value.I can create a query that counts the number of a specific value, but I want one that counts all values, which I can use to power a graph on a dashboard. Can you please help me construct a query that counts multiple values and displays them in a dashboard chart? Thank you. Read More